mirror of
https://github.com/fHDHR/fHDHR_NextPVR.git
synced 2025-12-06 12:16:58 -05:00
22 lines
467 B
HTML
22 lines
467 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<h4 style="text-align: center;">{{ fhdhr.config.dict["main"]["servicename"] }} Status</h4>
|
|
|
|
|
|
<div class="container">
|
|
<table class="table-medium center">
|
|
<tbody>
|
|
{% for key in list(origin_status_dict.keys()) %}
|
|
<tr>
|
|
<td>{{ key }}</td>
|
|
<td>{{ origin_status_dict[key] }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
{% endblock %}
|