1
0
mirror of https://github.com/fHDHR/fHDHR_NextPVR.git synced 2025-12-06 08:56:57 -05:00

Update Origin_web

This commit is contained in:
deathbybadaid 2021-01-08 12:35:18 -05:00
parent 32252e34c9
commit 93e07fd771

View File

@ -4,17 +4,18 @@
<h4 style="text-align: center;">{{ fhdhr.config.dict["main"]["servicename"] }} Status</h4> <h4 style="text-align: center;">{{ fhdhr.config.dict["main"]["servicename"] }} Status</h4>
<table class="center" style="width:50%">
<tr>
<th></th>
<th></th>
</tr>
<div class="container">
<table class="table-medium center">
<tbody>
{% for key in list(origin_status_dict.keys()) %} {% for key in list(origin_status_dict.keys()) %}
<tr> <tr>
<td>{{ key }}</td> <td>{{ key }}</td>
<td>{{ origin_status_dict[key] }}</td> <td>{{ origin_status_dict[key] }}</td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody>
</table>
</div>
{% endblock %} {% endblock %}