wip: buttons and upload errors

This commit is contained in:
2023-06-10 23:34:03 +02:00
parent b820c601f4
commit 589023e2ae
7 changed files with 51 additions and 10 deletions

View File

@@ -0,0 +1,17 @@
<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>