mirror of
https://framagit.org/framasoft/framaspace/argos.git
synced 2025-04-28 18:02:41 +02:00
26 lines
628 B
HTML
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 %}
|