updated webUI according to param changes

This commit is contained in:
piair
2024-02-27 11:26:55 +01:00
commit a0a4535c35
54 changed files with 350498 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{% extends "base.html" %}
{% block left_pannel %}stats{% endblock %}
{% block content %}
{%if not current_user.is_authenticated %}
<button class="unselected" onclick="location.href = '/login';">login</button>
{% else %}
<iframe src="/grafana?orgId=1&kiosk" width="100%" height="100%" frameborder="0"></iframe>
{% endif %}
{%endblock %}