prettier milestone, redeem queue tab

This commit is contained in:
Lili (Tlapka) 2023-03-14 16:43:26 +01:00
parent e8b9ca3cda
commit 9019f98031
1 changed files with 4 additions and 1 deletions

View File

@ -64,13 +64,15 @@
<table> <table>
<thead> <thead>
<tr> <tr>
<th>Active milestones</th> <th colspan="2">Active milestones</th>
<th>Progress</th>
</tr> </tr>
</thead> </thead>
{% for milestone in milestones %} {% for milestone in milestones %}
<tbody> <tbody>
<td> {{ milestone[0] }} </td> <td> {{ milestone[0] }} </td>
<td> <progress id="file" max={{ milestone[2] }} value={{ milestone[1] }}></progress></td> <td> <progress id="file" max={{ milestone[2] }} value={{ milestone[1] }}></progress></td>
<td> {{ milestone[1] }} / {{ milestone[2] }}</td>
</tbody> </tbody>
{% endfor %} {% endfor %}
</table> </table>
@ -83,6 +85,7 @@
<body> <body>
<h3>Redeems Queue</h3> <h3>Redeems Queue</h3>
<p>Past redeemed redeems with timestamps and notes.</p>
{% if queue %} {% if queue %}
<table> <table>
<thead> <thead>