32 lines
1.3 KiB
HTML
32 lines
1.3 KiB
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>
|
|
<a href="{{ url_for('config.edit', name='nodes') }}" style="text-decoration: none" title="JSON">⚙</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>
|
|
<a href="{{ url_for('config.edit', name='rules') }}" style="text-decoration: none" title="JSON">⚙</a>
|
|
<dd>pravila za posredovanje prometa
|
|
<dt><a href="{{ url_for('vpn.custom') }}">VPN po meri</a>
|
|
<a href="{{ url_for('config.edit', name='wireguard') }}" style="text-decoration: none" title="JSON">⚙</a>
|
|
<dd>urejanje ključev za oddaljeni dostop do posebnih omrežij
|
|
<dt><a href="{{ url_for('config.index') }}">Nastavitve</a>
|
|
<a href="{{ url_for('config.edit', name='settings') }}" style="text-decoration: none" title="JSON">⚙</a>
|
|
<dd>nastavitve aplikacije FRIwall
|
|
</dl>
|
|
</section>
|
|
{% endif %}
|
|
{% endblock %}
|