mirror of
https://github.com/fHDHR/fHDHR_NextPVR.git
synced 2025-12-06 08:46:58 -05:00
37 lines
1.0 KiB
HTML
37 lines
1.0 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<h4 style="text-align: center;">fHDHR Diagnostic Links</h4>
|
|
|
|
<table class="center" style="width:100%">
|
|
<tr>
|
|
<th>Item</th>
|
|
<th>HDHR</th>
|
|
<th>RMG</th>
|
|
<th>Non-Specific</th>
|
|
</tr>
|
|
|
|
{% for button_item in button_list %}
|
|
<tr>
|
|
<td>{{ button_item["label"] }}</td>
|
|
{% if button_item["hdhr"] %}
|
|
<td><button onclick="OpenLink('{{ button_item["hdhr"] }}')">{{ button_item["label"] }}</a></button></td>
|
|
{% else %}
|
|
<td></td>
|
|
{% endif %}
|
|
{% if button_item["rmg"] %}
|
|
<td><button onclick="OpenLink('{{ button_item["rmg"] }}')">{{ button_item["label"] }}</a></button></td>
|
|
{% else %}
|
|
<td></td>
|
|
{% endif %}
|
|
{% if button_item["other"] %}
|
|
<td><button onclick="OpenLink('{{ button_item["other"] }}')">{{ button_item["label"] }}</a></button></td>
|
|
{% else %}
|
|
<td></td>
|
|
{% endif %}
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|