friwall/web/templates/index.html

29 lines
870 B
HTML
Raw Normal View History

2022-01-03 10:33:02 +00:00
{% extends 'base.html' %}
{% block content %}
2023-09-15 12:56:16 +00:00
<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>
2022-01-03 10:33:02 +00:00
{% if current_user.is_admin %}
2023-05-19 07:00:01 +00:00
<section>
2023-09-15 12:56:16 +00:00
<h1>Admin</h1>
2023-07-07 07:16:51 +00:00
<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>
2023-05-19 07:00:01 +00:00
<dd>pravila za posredovanje prometa
<dt><a href="{{ url_for('config.edit', name='netmap') }}">Netmap</a>
<dd>statične 1:1 preslikave naslovov za strežniška omrežja
<dt><a href="{{ url_for('config.index') }}">Nastavitve</a>
<dd>nastavitve aplikacije FRIwall
2023-07-07 07:16:51 +00:00
</dl>
2023-05-19 07:00:01 +00:00
</section>
2022-01-03 10:33:02 +00:00
{% endif %}
{% endblock %}