|
@@ -5,43 +5,62 @@
|
|
|
{% block content %}
|
|
|
<div class="row">
|
|
|
<h2>Configuration du VPN</h2>
|
|
|
- <form class="flatform" action="{{ object.get_absolute_url }}" method="post">{% csrf_token %}
|
|
|
- <p class="legend">Quand vous aurez terminé vos modifications, cliquez sur <input class="button" type="submit" value="Valider" /></p>
|
|
|
-
|
|
|
+ {% if form %}
|
|
|
+ <form class="flatform" action="{{ object.get_absolute_url }}" method="post">{% csrf_token %}
|
|
|
+ <p class="legend">Quand vous aurez terminé vos modifications, cliquez sur <input class="button" type="submit" value="Valider" /></p>
|
|
|
+ {% endif %}
|
|
|
{% for message in messages %}
|
|
|
- <div class="message eat-up{% if message.tags %} {{ message.tags }}{% endif %}">
|
|
|
- {{ message }}
|
|
|
- </div>
|
|
|
+ <div class="message eat-up{% if message.tags %} {{ message.tags }}{% endif %}">
|
|
|
+ {{ message }}
|
|
|
+ </div>
|
|
|
{% endfor %}
|
|
|
|
|
|
- {% if form.non_field_errors or form.ipv4_endpoint.errors or form.ipv6_endpoint.errors %}
|
|
|
- <div class="alert-box alert nogap">
|
|
|
- {{ form.non_field_errors }}
|
|
|
- {{ form.ipv4_endpoint.errors }}
|
|
|
- {{ form.ipv6_endpoint.errors }}
|
|
|
- </div>{% endif %}
|
|
|
-
|
|
|
+ {% if form %}
|
|
|
+ {% if form.non_field_errors or form.ipv4_endpoint.errors or form.ipv6_endpoint.errors %}
|
|
|
+ <div class="alert-box alert nogap">
|
|
|
+ {{ form.non_field_errors }}
|
|
|
+ {{ form.ipv4_endpoint.errors }}
|
|
|
+ {{ form.ipv6_endpoint.errors }}
|
|
|
+ </div>
|
|
|
+ {% endif %}
|
|
|
+ {% endif %}
|
|
|
<div class="large-6 columns">
|
|
|
<div class="panel">
|
|
|
- <h3>Statut</h3>
|
|
|
+ <h3>Authentification</h3>
|
|
|
<table class="full-width">
|
|
|
<tr>
|
|
|
<td class="center"><span class="label">Identifiant</span></td>
|
|
|
<td>{{object.login}}</td>
|
|
|
</tr>
|
|
|
+ {% if object.password %}
|
|
|
<tr>
|
|
|
<td class="center" colspan="2">
|
|
|
<a class="button tiny radius" id="passgen" href="{% url 'vpn:generate_password' object.pk %}"><i class="fa fa-refresh"></i>
|
|
|
Générer un nouveau mot de passe</a>
|
|
|
</td>
|
|
|
</tr>
|
|
|
+ {% endif %}
|
|
|
+ {% if object.crypto_link %}
|
|
|
+ <tr>
|
|
|
+ <td class="center"><span class="label">Matériel cryptographique</span></td>
|
|
|
+ <td><a href="{{object.crypto_link}}">Télecharger (lien supprimé après ouverture)</a></td>
|
|
|
+ </tr>
|
|
|
+ {% endif %}
|
|
|
<tr class="flatfield">
|
|
|
- <td class="center">{{ form.comment.label_tag }}</td>
|
|
|
- <td>{{ form.comment }}</td>
|
|
|
+ {% if form %}
|
|
|
+ <td class="center">{{ form.comment.label_tag }}</td>
|
|
|
+ <td>{{ form.comment }}</td>
|
|
|
+ {% else %}
|
|
|
+ <td class="center"><span class="label">Commentaire</span></td>
|
|
|
+ <td>{{ object.comment }}</td>
|
|
|
+
|
|
|
+ {% endif %}
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="center boolviewer" colspan="2">
|
|
|
+ {% if form %}
|
|
|
<input type="checkbox" disabled="disabled"{% if object.activated %} checked="checked"{% endif %} />
|
|
|
+ {% endif %}
|
|
|
<span>Ce VPN est {{ object.activated|yesno:"activé,désactivé" }}</span>
|
|
|
</td>
|
|
|
</tr>
|
|
@@ -53,14 +72,25 @@
|
|
|
<div class="panel">
|
|
|
<h3>Adresses IP</h3>
|
|
|
<table class="full-width">
|
|
|
- <tr class="flatfield">
|
|
|
- <td class="center">{{ form.ipv4_endpoint.label_tag }}</td>
|
|
|
- <td{% if form.non_field_errors or form.ipv4_endpoint.errors %} class="errored"{% endif %}>{{ form.ipv4_endpoint }}</td>
|
|
|
- </tr>
|
|
|
- <tr class="flatfield">
|
|
|
- <td class="center">{{ form.ipv6_endpoint.label_tag }}</td>
|
|
|
- <td{% if form.non_field_errors or form.ipv6_endpoint.errors %} class="errored"{% endif %}>{{ form.ipv6_endpoint }}</td>
|
|
|
- </tr>
|
|
|
+ {% if form %}
|
|
|
+ <tr class="flatfield">
|
|
|
+ <td class="center">{{ form.ipv4_endpoint.label_tag }}</td>
|
|
|
+ <td{% if form.non_field_errors or form.ipv4_endpoint.errors %} class="errored"{% endif %}>{{ form.ipv4_endpoint }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr class="flatfield">
|
|
|
+ <td class="center">{{ form.ipv6_endpoint.label_tag }}</td>
|
|
|
+ <td{% if form.non_field_errors or form.ipv6_endpoint.errors %} class="errored"{% endif %}>{{ form.ipv6_endpoint }}</td>
|
|
|
+ </tr>
|
|
|
+ {% else %}
|
|
|
+ <tr class="flatfield">
|
|
|
+ <td class="center"><span class="label">IPv4</span></td>
|
|
|
+ <td>{{ object.ipv4_endpoint }}</td>
|
|
|
+ </tr>
|
|
|
+ <tr class="flatfield">
|
|
|
+ <td class="center"><span class="label">IPv6</span></td>
|
|
|
+ <td>{{ object.ipv6_endpoint }}</td>
|
|
|
+ </tr>
|
|
|
+ {% endif %}
|
|
|
<tr>
|
|
|
<td class="center"><span class="label">Sous-réseaux</span></td>
|
|
|
<td>
|
|
@@ -70,8 +100,10 @@
|
|
|
</table>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ {% if form %}
|
|
|
<p class="formcontrol"><input class="button" type="submit" value="Valider" /></p>
|
|
|
</form>
|
|
|
+ {% endif %}
|
|
|
</div>
|
|
|
|
|
|
<div class="row" id="graph">
|