{% extends 'base.html' %}
{% block content %}
Workers ({{workers.online}} online)
| Name |
Location |
Version |
Reservables |
Shutting Down |
Heartbeat |
{% for row in workers.rows %}
| {{row.name}} |
{{row.url}} |
{{row.version}} |
{{row.reservables}} |
{{row.shutting_down}} |
|
{% endfor %}
Devices ({{devices.total}} total, {{devices.available}} available, {{devices.reserved}} reserved, {{devices.broken}} broken)
| Serial |
Worker |
Status |
Client |
End Reservation |
Reboot |
Delete |
{% for row in devices.rows %}
| {{row.serial}} |
{{row.worker}} |
{{row.status}} |
{{row.client_id}} |
|
|
|
{% endfor %}
{% endblock %}