mirror of
https://github.com/fHDHR/fHDHR_NextPVR.git
synced 2025-12-06 09:26:57 -05:00
21 lines
454 B
HTML
21 lines
454 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<h4 style="text-align: center;">{{ fhdhr.config.dict["main"]["servicename"] }} Status</h4>
|
|
|
|
<table class="center" style="width:50%">
|
|
<tr>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
|
|
{% for key in list(origin_status_dict.keys()) %}
|
|
<tr>
|
|
<td>{{ key }}</td>
|
|
<td>{{ origin_status_dict[key] }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|