friwall/web/templates/index.html
Timotej Lazar 331adbd5e4 Drop static NAT support
Unused and never properly tested.
2025-10-29 13:38:21 +01:00

28 lines
862 B
HTML

{% extends 'base.html' %}
{% block content %}
<section>
<dl>
<dt><a href="{{ url_for('vpn.index') }}">VPN</a>
<dd>urejanje ključev za oddaljeni dostop
<dt><a href="{{ url_for('rules.manage') }}">Pravila</a>
<dd>vklop / izklop pravil za požarni zid
</dl>
</section>
{% if current_user.is_admin %}
<section>
<h1>Admin</h1>
<dl>
<dt><a href="{{ url_for('nodes') }}">Status</a>
<dd>status opek v požarnem zidu
<dt><a href="{{ url_for('ipsets.index') }}">Omrežja</a>
<dd>območja IP, naslovi NAT in skupine za VPN
<dt><a href="{{ url_for('rules.index') }}">Pravila</a>
<dd>pravila za posredovanje prometa
<dt><a href="{{ url_for('vpn.custom') }}">VPN po meri</a>
<dd>urejanje ključev za oddaljeni dostop do posebnih omrežij
<dt><a href="{{ url_for('config.index') }}">Nastavitve</a>
<dd>nastavitve aplikacije FRIwall
</dl>
</section>
{% endif %}
{% endblock %}