1
0
mirror of https://github.com/fHDHR/fHDHR_NextPVR.git synced 2025-12-06 06:56:57 -05:00
fHDHR_NextPVR/fHDHR_web/templates/index.html
2021-01-08 09:29:15 -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 %}