pnpdevice/templates/index.template.html

15 lines
319 B
HTML

<html>
<h1>Pools'n'Pumps Device</h1>
{% if not relays %}
<h2>No relays found.</h2>
{% else %}
<h2>Relays</h2>
<ul>
{% for relay in relays %}
<li><a href="/relay/{{ relay.id }}">{{ relay.name }}</a> - {{ relay.state }}</li>
{% endfor %}
</ul>
{% endif %}
<a href="/relay/create">Create Relay</a>
</html>