1
0
mirror of https://github.com/fHDHR/fHDHR_NextPVR.git synced 2025-12-07 18:12:45 -05:00

Compare commits

..

No commits in common. "051fb87addaa66dd0994c7cf3cb5360ca551db7c" and "7348101eea1fe3e0fb7ea155752486f622804a74" have entirely different histories.

View File

@ -8,16 +8,11 @@
</head>
<body>
<h1 class="center" style="text-align:center">
<h1 style="text-align: center;">
<span style="text-decoration: underline;"><strong><em>{{ fhdhr.config.dict["fhdhr"]["friendlyname"] }}</em></strong>
</span>
<img class="pull-left" src="/favicon.ico" alt="fHDHR Logo" width="100" height="100">
</h1>
{% set retmessage = request.args.get('retmessage', default=None) %}
{% if retmessage %}
<p></p>
<p class="pull-left" style="font-size:1em">{{ retmessage }}</p>
{% endif %}
<br><br>
<p></p>
@ -56,8 +51,9 @@
<a><input type="submit" value="Basic"></a>
{% endif %}
</form>
<hr align="center" width="100%">
</div>
<hr align="center" width="100%">
{% if fhdhr.config.dict["web_ui"]["cluster_bar"] %}
{% set locations = fhdhr.device.cluster.get_cluster_dicts_web() %}
@ -66,11 +62,16 @@
{% for location in locations %}
<button onclick="location.href='{{ location["base_url"] }}'" type="button">{{ location["name"] }}</button>
{% endfor %}
<hr align="center" width="100%">
</div>
<hr align="center" width="100%">
{% endif %}
{% endif %}
{% set retmessage = request.args.get('retmessage', default=None) %}
{% if retmessage %}
<p>{{ retmessage }}</p>
{% endif %}
{% block content %}{% endblock %}
</body>
</html>