mirror of
https://framagit.org/framasoft/framaspace/argos.git
synced 2025-04-28 09:52:38 +02:00
25 lines
662 B
HTML
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 %}
|