Label the queue as it is no longer Source.uuid

This commit is contained in:
tcely 2025-04-07 00:22:55 -04:00
parent b97de08ffd
commit 8e52692ec8
No known key found for this signature in database
GPG Key ID: B84DD241AF4C4274

View File

@ -17,14 +17,14 @@
{% if task.has_error %} {% if task.has_error %}
<span class="collection-item"> <span class="collection-item">
<i class="fas fa-exclamation-triangle"></i> <strong>{{ task.verbose_name }}</strong><br> <i class="fas fa-exclamation-triangle"></i> <strong>{{ task.verbose_name }}</strong><br>
Source: &quot;{{ task.queue }}&quot;<br> Queue: &quot;{{ task.queue }}&quot;<br>
Error: &quot;{{ task.error_message }}&quot;<br> Error: &quot;{{ task.error_message }}&quot;<br>
<i class="far fa-clock"></i> Task ran at <strong>{{ task.run_at|date:'Y-m-d H:i:s' }}</strong> <i class="far fa-clock"></i> Task ran at <strong>{{ task.run_at|date:'Y-m-d H:i:s' }}</strong>
</span> </span>
{% else %} {% else %}
<span class="collection-item"> <span class="collection-item">
<i class="fas fa-check"></i> <strong>{{ task.verbose_name }}</strong><br> <i class="fas fa-check"></i> <strong>{{ task.verbose_name }}</strong><br>
Source: &quot;{{ task.queue }}&quot;<br> Queue: &quot;{{ task.queue }}&quot;<br>
<i class="far fa-clock"></i> Task ran at <strong>{{ task.run_at|date:'Y-m-d H:i:s' }}</strong> <i class="far fa-clock"></i> Task ran at <strong>{{ task.run_at|date:'Y-m-d H:i:s' }}</strong>
</span> </span>
{% endif %} {% endif %}