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.
29 lines
918 B
29 lines
918 B
|
13 years ago
|
{% extends "ovpnconsole/base.html" %}
|
||
|
|
|
||
|
|
{% block title %}Suppression de l'utilisateur {{ object.name }}{% 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 login %}">Connexion</a></li>
|
||
|
|
{% endif %}
|
||
|
|
{% endblock %}
|
||
|
|
{% block navigation %}
|
||
|
|
<i>{{ object }}</i>
|
||
|
|
{% endblock %}
|
||
|
|
{% block menu %}
|
||
|
|
<h2>Suppression {{ object.name }}</h2>
|
||
|
|
<a href="/ovpnconsole/user/{{ object.id }}/">Cliquez ici pour annuler</a>
|
||
|
|
{% endblock %}
|
||
|
|
|
||
|
|
{% block contenu %}
|
||
|
|
<h2> Suppression de l'utilisateur {{ object.name }} </h2>
|
||
|
|
<form method="post" action=".">
|
||
|
|
<p>Etes vous certain de vouloir supprimer l'utilisateur {{ object }} ?</p>
|
||
|
|
<input type="submit" value="Supprimer"/>
|
||
|
|
</form>
|
||
|
|
{% endblock %}
|
||
|
|
|