123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- {% extends "base.html" %}
- {% load subnets %}
- {% block content %}
- <div class="row">
- <h2>Configuration du VPS</h2>
- {% 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>
- {% endfor %}
- {% 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-12 columns">
- <div class="panel">
- <h3>Authentification</h3>
- <table class="full-width">
- {% if object.fingerprint_set.all %}
- <tr>
- <td class="center"><span class="label">Empreinte(s)</span></td>
- <td>{% for fingerprint in object.fingerprint_set.all %}
- {{ fingerprint.length }} {{ fingerprint.fingerprint }} ({{ fingerprint.algo }}){% if not forloop.last %}<br />{% endif %}
- {% endfor %}</td>
- </tr>
- {% endif %}
- {% if object.console %}
- <tr>
- <td class="center"><span class="label">Console {{object.console.protocol }}</span></td>
- <td>
- {{ object.console.domain }}:{{ object.console.port }}<br />
- <a href="{{object.console.password_link}}">Voir le mot de passe (lien supprimé après ouverture)</a>
- </td>
- </tr>
- {% endif %}
- <tr class="flatfield">
- {% 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 VPS est {{ object.activated|yesno:"activé,désactivé" }}</span>
- </td>
- </tr>
- </table>
- </div>
- </div>
- <div class="large-12 columns">
- <div class="panel">
- <h3>Adresses IP</h3>
- <table class="full-width">
- {% 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>
- {% for subnet in object.ip_subnet.all %}{{ subnet|prettify }}<br/>{% endfor %}
- </td>
- </tr>
- </table>
- </div>
- </div>
- {% if form %}
- <p class="formcontrol"><input class="button" type="submit" value="Valider" /></p>
- </form>
- {% endif %}
- </div>
- {% endblock %}
|