Tweak HTML templates
This commit is contained in:
parent
d2b08bf891
commit
ea6ca9b55d
|
@ -1,8 +1,16 @@
|
||||||
{% extends 'base.html' %}
|
{% extends 'base.html' %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
<section>
|
||||||
|
<dl>
|
||||||
|
<dt><a href="{{ url_for('vpn.index') }}">VPN</a>
|
||||||
|
<dd>urejanje ključev za WireGuard VPN
|
||||||
|
<dt><a href="{{ url_for('rules.manage') }}">Pravila</a>
|
||||||
|
<dd>vklop / izklop pravil za požarni zid
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
{% if current_user.is_admin %}
|
{% if current_user.is_admin %}
|
||||||
<section>
|
<section>
|
||||||
|
<h1>Admin</h1>
|
||||||
<dl>
|
<dl>
|
||||||
<dt><a href="{{ url_for('nodes') }}">Status</a>
|
<dt><a href="{{ url_for('nodes') }}">Status</a>
|
||||||
<dd>status opek v požarnem zidu
|
<dd>status opek v požarnem zidu
|
||||||
|
@ -20,14 +28,5 @@
|
||||||
<dd>preslikave uporabnikov LDAP v pisarniška omrežja
|
<dd>preslikave uporabnikov LDAP v pisarniška omrežja
|
||||||
</dl>
|
</dl>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<section>
|
|
||||||
<dl>
|
|
||||||
<dt><a href="{{ url_for('vpn.index') }}">VPN</a>
|
|
||||||
<dd>urejanje ključev za WireGuard VPN
|
|
||||||
<dt><a href="{{ url_for('rules.manage') }}">Pravila</a>
|
|
||||||
<dd>vklop / izklop pravil za požarni zid
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -3,6 +3,8 @@
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<p>
|
<p>
|
||||||
Trenutna različica nastavitev: {{ version }}
|
Trenutna različica nastavitev: {{ version }}
|
||||||
|
<p>
|
||||||
|
Na opekah veljajo različice:
|
||||||
<ul>
|
<ul>
|
||||||
{% for node, node_version in nodes.items() %}
|
{% for node, node_version in nodes.items() %}
|
||||||
<li>{{ node }}: <span style="color: {% if node_version|string == version|string %}green{% else %}red{% endif %};">{{ node_version }}</span>
|
<li>{{ node }}: <span style="color: {% if node_version|string == version|string %}green{% else %}red{% endif %};">{{ node_version }}</span>
|
||||||
|
|
Loading…
Reference in a new issue