Files
website-v2/templates/admin/task_polling_widget.html
2026-02-18 17:28:04 -05:00

23 lines
592 B
HTML

<div class="container my-4 mx-auto">
<table>
<thead>
<th>Task Name</th>
<th>Task Status</th>
<th>Errors</th>
</thead>
<tbody>
{% for key, value in tasks.items %}
<tr>
<td>{{ value.name }}</td>
<td>{{ value.value }}</td>
<td style="color: red;">
{% if value.error %}
{{value.error}}
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>