mirror of
https://github.com/FAUSheppy/tmnf-replay-server.git
synced 2025-12-05 22:51:37 +01:00
18 lines
412 B
HTML
18 lines
412 B
HTML
<head>
|
|
{% include "head.html" %}
|
|
</head>
|
|
<body>
|
|
{% include "home-button.html" %}
|
|
<div class="mb-5 container">
|
|
{% for r in results %}
|
|
<b>{{ r[0] }}</b>
|
|
{% if r[1] %}
|
|
<i style="color: red;">{{ r[1] }}</i>
|
|
{% else %}
|
|
<i style="color: green;">Success</i>
|
|
{% endif %}
|
|
<br>
|
|
{% endfor %}
|
|
</div>
|
|
</body>
|