argos/argos_monitoring/server/templates/agents.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

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 %}