2022-01-03 10:33:02 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<ul>
|
|
|
|
{% if current_user.is_admin %}
|
|
|
|
<li><a href="{{ url_for('config.index') }}">Nastavitve
|
2023-04-25 15:06:31 +00:00
|
|
|
<li><a href="{{ url_for('config.edit', name='networks') }}">Omrežja
|
2022-01-03 10:33:02 +00:00
|
|
|
<li><a href="{{ url_for('config.edit', name='groups') }}">Skupine
|
|
|
|
<li><a href="{{ url_for('config.edit', name='forwards') }}">Luknje
|
|
|
|
{% endif %}
|
|
|
|
<li><a href="{{ url_for('vpn.index') }}">VPN
|
|
|
|
</ul>
|
|
|
|
{% endblock %}
|