|
|
@ -241,9 +241,19 @@ def web_index(): |
|
|
|
u = app.url_for('static', filename='client.zip', _external=True) |
|
|
|
b.line().li("Jako zip: ", b._p(b._a(href=u)(u))) |
|
|
|
with b.line().li("Jednotlivé soubory:"): |
|
|
|
u = app.url_for('static', filename='client/client.py', _external=True) |
|
|
|
v = app.url_for('static', filename='client/play.py', _external=True) |
|
|
|
b.p(b._a(href=u)(u), b._br(), b._a(href=v)(v)) |
|
|
|
with b.p(): |
|
|
|
u = app.url_for('static', filename='client/client.py', _external=True) |
|
|
|
b.a(href=u)(u) |
|
|
|
b.br() |
|
|
|
u = app.url_for('static', filename='client/strategy.py', _external=True) |
|
|
|
b.a(href=u)(u) |
|
|
|
b.br() |
|
|
|
u = app.url_for('static', filename='client/strategy.cpp', _external=True) |
|
|
|
b.a(href=u)(u) |
|
|
|
b.br() |
|
|
|
u = app.url_for('static', filename='client/jsmn.h', _external=True) |
|
|
|
b.a(href=u)(u) |
|
|
|
b.br() |
|
|
|
b.line().li("Git: ", b._pre(f"git clone {app.url_for('static', filename='client.git', _external=True)}", style="margin: 0pt 0pt")) |
|
|
|
|
|
|
|
return b.print_file() |
|
|
|