Show queued tasks

This commit is contained in:
Joscha 2023-08-06 20:31:11 +02:00
parent 2c0a496897
commit ad5da60b5a
8 changed files with 180 additions and 25 deletions

View file

@ -0,0 +1,18 @@
<table class="queue">
<thead>
<tr>
<th>commit</th>
<th>since</th>
<th>prio</th>
</tr>
</thead>
<tbody>
{% for task in tasks %}
<tr {% if task.priority % 2==1 %}class="odd" {% endif %}>
<td><a href="{{ task.id }}">{{ task.short }}</a></td>
<td>{{ task.since }}</td>
<td>{{ task.priority }}</td>
</tr>
{% endfor %}
</tbody>
</table>