fHDHR_ToonamiAftermath/data/www/templates/index.html
deathbybandaid 8ae419d14c first push
2020-12-05 11:08:04 -05:00

21 lines
411 B
HTML

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