argos/argos/server/templates/agents.html

20 lines
462 B
HTML

{% extends "base.html" %}
{% block title %}<h2>Agents</h2>{% endblock title %}
{% block content %}
<table role="grid">
<thead>
<tr>
<th>Agent</th>
<th>Last seen</th>
</tr>
</thead>
<tbody>
{% for result in last_seen %}
<tr>
<td>{{ result.agent_id }}</td>
<td>{{ result.submitted_at }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock content %}