You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
633 B
23 lines
633 B
{% extends "ovpnconsole/base.html" %} |
|
|
|
{% block title %}Accueil OpenVPN Console{% endblock %} |
|
|
|
{% block menu_top %} |
|
{% if user.is_authenticated %} |
|
<li><a href="{% url admin_page %}">Administration</a></li> |
|
<li><a href="{% url logout %}">Deconnexion</a></li> |
|
{% else %} |
|
<li><a href="{% url ovpnsite_list %}">Accès à la console</a></li> |
|
{% endif %} |
|
{% endblock %} |
|
{% block navigation %} |
|
<i>Accueil</i> |
|
{% endblock %} |
|
|
|
{% block menu %} |
|
<a href="{% url ovpnsite_list %}">Accès à la console</a> |
|
{% endblock %} |
|
|
|
{% block contenu %} |
|
<h2> Bienvenue sur OVPNConsole </h2> |
|
{% endblock %}
|
|
|