argos/argos/server/templates/results.html
2023-11-22 15:54:37 +01:00

26 lines
628 B
HTML

{% extends "base.html" %}
{% block title %}<h2>{{ task }}</h2>{% endblock %}
{% 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>
<td>{{ result.submitted_at }}</td>
<td>{{ result.status }}</td>
<td>{{ result.severity }}</td>
<td>{{ result.context }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}