vps.html 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. {% extends "base.html" %}
  2. {% load subnets %}
  3. {% block content %}
  4. <div class="row">
  5. <h2>Configuration du VPS</h2>
  6. {% if form %}
  7. <form class="flatform" action="{{ object.get_absolute_url }}" method="post">{% csrf_token %}
  8. <p class="legend">Quand vous aurez terminé vos modifications, cliquez sur <input class="button" type="submit" value="Valider" /></p>
  9. {% endif %}
  10. {% for message in messages %}
  11. <div class="message eat-up{% if message.tags %} {{ message.tags }}{% endif %}">
  12. {{ message }}
  13. </div>
  14. {% endfor %}
  15. {% if form %}
  16. {% if form.non_field_errors or form.ipv4_endpoint.errors or form.ipv6_endpoint.errors %}
  17. <div class="alert-box alert nogap">
  18. {{ form.non_field_errors }}
  19. {{ form.ipv4_endpoint.errors }}
  20. {{ form.ipv6_endpoint.errors }}
  21. </div>
  22. {% endif %}
  23. {% endif %}
  24. <div class="large-12 columns">
  25. <div class="panel">
  26. <h3>Authentification</h3>
  27. <table class="full-width">
  28. {% if object.fingerprint_set.all %}
  29. <tr>
  30. <td class="center"><span class="label">Empreinte(s)</span></td>
  31. <td>{% for fingerprint in object.fingerprint_set.all %}
  32. {{ fingerprint.length }} {{ fingerprint.fingerprint }} ({{ fingerprint.algo }}){% if not forloop.last %}<br />{% endif %}
  33. {% endfor %}</td>
  34. </tr>
  35. {% endif %}
  36. {% if object.console %}
  37. <tr>
  38. <td class="center"><span class="label">Console {{object.console.protocol }}</span></td>
  39. <td>
  40. {{ object.console.domain }}:{{ object.console.port }}<br />
  41. <a href="{{object.console.password_link}}">Voir le mot de passe (lien supprimé après ouverture)</a>
  42. </td>
  43. </tr>
  44. {% endif %}
  45. <tr class="flatfield">
  46. {% if form %}
  47. <td class="center">{{ form.comment.label_tag }}</td>
  48. <td>{{ form.comment }}</td>
  49. {% else %}
  50. <td class="center"><span class="label">Commentaire</span></td>
  51. <td>{{ object.comment }}</td>
  52. {% endif %}
  53. </tr>
  54. <tr>
  55. <td class="center boolviewer" colspan="2">
  56. {% if form %}
  57. <input type="checkbox" disabled="disabled"{% if object.activated %} checked="checked"{% endif %} />
  58. {% endif %}
  59. <span>Ce VPS est {{ object.activated|yesno:"activé,désactivé" }}</span>
  60. </td>
  61. </tr>
  62. </table>
  63. </div>
  64. </div>
  65. <div class="large-12 columns">
  66. <div class="panel">
  67. <h3>Adresses IP</h3>
  68. <table class="full-width">
  69. {% if form %}
  70. <tr class="flatfield">
  71. <td class="center">{{ form.ipv4_endpoint.label_tag }}</td>
  72. <td{% if form.non_field_errors or form.ipv4_endpoint.errors %} class="errored"{% endif %}>{{ form.ipv4_endpoint }}</td>
  73. </tr>
  74. <tr class="flatfield">
  75. <td class="center">{{ form.ipv6_endpoint.label_tag }}</td>
  76. <td{% if form.non_field_errors or form.ipv6_endpoint.errors %} class="errored"{% endif %}>{{ form.ipv6_endpoint }}</td>
  77. </tr>
  78. {% else %}
  79. <tr class="flatfield">
  80. <td class="center"><span class="label">IPv4</span></td>
  81. <td>{{ object.ipv4_endpoint }}</td>
  82. </tr>
  83. <tr class="flatfield">
  84. <td class="center"><span class="label">IPv6</span></td>
  85. <td>{{ object.ipv6_endpoint }}</td>
  86. </tr>
  87. {% endif %}
  88. <tr>
  89. <td class="center"><span class="label">Sous-réseaux</span></td>
  90. <td>
  91. {% for subnet in object.ip_subnet.all %}{{ subnet|prettify }}<br/>{% endfor %}
  92. </td>
  93. </tr>
  94. </table>
  95. </div>
  96. </div>
  97. {% if form %}
  98. <p class="formcontrol"><input class="button" type="submit" value="Valider" /></p>
  99. </form>
  100. {% endif %}
  101. </div>
  102. {% endblock %}