13 lines
349 B
HTML
13 lines
349 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<ul>
|
|
{% if current_user.is_admin %}
|
|
<li><a href="{{ url_for('config.index') }}">Nastavitve
|
|
<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 %}
|