friwall/web/templates/index.html

13 lines
349 B
HTML
Raw Normal View History

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