pnpdevice/templates/index.template.html

22 lines
484 B
HTML
Raw Permalink Normal View History

<html>
<h1>Pools'n'Pumps Device</h1>
{% if not relays %}
<h2>No relays found.</h2>
{% else %}
<h2>Relays</h2>
2024-09-15 14:29:13 -07:00
<table>
<thead><th>Relay</th><th>State</th></thead>
<tbody>
{% for relay in relays %}
<tr>
<td><a href="/relay/{{ relay.id }}">{{ relay.name }}</td></a></td>
<td>{{ "ON" if relay.state else "OFF"}}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}
2024-09-15 14:29:13 -07:00
<br>
<a href="/relay/create">Create Relay</a>
</html>