Identify queue items by commit hash, not id

This commit is contained in:
Joscha 2023-08-09 16:19:46 +02:00
parent bf08d00922
commit e5de9ccb97
11 changed files with 42 additions and 186 deletions

View file

@ -12,7 +12,7 @@
{% for task in tasks %}
<tr {% if task.odd %} class="odd" {% endif %}>
<td>
<a href="{{ task.id }}">
<a href="{{ base.root }}/commit/{{ task.hash }}">
{% call util::commit_short(task.short, task.reachable) %}
</a>
</td>