argos/argos_monitoring/server/templates/results.html
Luc Didry 4880c65681
💥 — Rename argos to argos-monitoring to fit the package name (fix #53)
Uninstall argos with `pip uninstall argos-monitoring` before installing this release!
2024-07-04 09:44:07 +02:00

25 lines
662 B
HTML

{% extends "base.html" %}
{% block title %}<h2>{{ task }}</h2>{% endblock title %}
{% block content %}
<code>{{ description }}</code>
<table role="grid">
<thead>
<tr>
<th>Submitted at</th>
<th>Status</th>
<th>Severity</th>
<th>Context</th>
</tr>
</thead>
<tbody>
{% for result in results %}
<tr id="{{ result.id }}">
<td>{{ result.submitted_at }}</td>
<td>{{ result.status }}</td>
<td>{{ result.severity }}</td>
<td>{{ result.context }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock content %}