fHDHR_LocalNow/fHDHR_web/templates/index.html
deathbybandaid 12313bde74 first psuh
2021-01-15 13:52:25 -05:00

23 lines
463 B
HTML

{% extends "base.html" %}
{% block content %}
<h4 style="text-align: center;">fHDHR Status</h4>
<div class="container">
<table class="table-medium center">
<tbody>
{% for key in list(fhdhr_status_dict.keys()) %}
<tr>
<td class="rTableCell">{{ key }}</td>
<td class="rTableCell">{{ fhdhr_status_dict[key] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}