1
0
mirror of https://github.com/fHDHR/fHDHR_NextPVR.git synced 2025-12-07 02:26:59 -05:00
fHDHR_NextPVR/data/www/templates/origin.html
2020-11-19 08:59:07 -05:00

26 lines
628 B
HTML

{% extends "base.html" %}
{% block content %}
<h4 style="text-align: center;">{{ fhdhr.config.dict["main"]["servicename"] }} Status</h4>
<div style="text-align: center;">
<button onclick="OpenLink('/api/channels?method=scan&redirect=%2Forigin')">Force Channel Update</a></button>
</div>
<br>
<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 %}