friwall/web/templates/index.html
2023-01-26 16:28:32 +01:00

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 %}