ikeproposal.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {% extends 'generic/object.html' %}
  2. {% load helpers %}
  3. {% load plugins %}
  4. {% load i18n %}
  5. {% block content %}
  6. <div class="row">
  7. <div class="col col-12 col-md-6">
  8. <div class="card">
  9. <h2 class="card-header">{% trans "IKE Proposal" %}</h2>
  10. <table class="table table-hover attr-table">
  11. <tr>
  12. <th scope="row">{% trans "Name" %}</th>
  13. <td>{{ object.name }}</td>
  14. </tr>
  15. <tr>
  16. <th scope="row">{% trans "Description" %}</th>
  17. <td>{{ object.description|placeholder }}</td>
  18. </tr>
  19. <tr>
  20. <th scope="row">{% trans "Authentication method" %}</th>
  21. <td>{{ object.get_authentication_method_display }}</td>
  22. </tr>
  23. <tr>
  24. <th scope="row">{% trans "Encryption algorithm" %}</th>
  25. <td>{{ object.get_encryption_algorithm_display }}</td>
  26. </tr>
  27. <tr>
  28. <th scope="row">{% trans "Authentication algorithm" %}</th>
  29. <td>{{ object.get_authentication_algorithm_display }}</td>
  30. </tr>
  31. <tr>
  32. <th scope="row">{% trans "DH group" %}</th>
  33. <td>{{ object.get_group_display }}</td>
  34. </tr>
  35. <tr>
  36. <th scope="row">{% trans "SA lifetime (seconds)" %}</th>
  37. <td>{{ object.sa_lifetime|placeholder }}</td>
  38. </tr>
  39. <tr>
  40. <th scope="row">{% trans "IKE Policies" %}</th>
  41. <td>
  42. <a href="{% url 'vpn:ikepolicy_list' %}?proposal_id={{ object.pk }}">{{ object.ike_policies.count }}</a>
  43. </td>
  44. </tr>
  45. </table>
  46. </div>
  47. {% plugin_left_page object %}
  48. </div>
  49. <div class="col col-12 col-md-6">
  50. {% include 'inc/panels/custom_fields.html' %}
  51. {% include 'inc/panels/comments.html' %}
  52. {% include 'inc/panels/tags.html' %}
  53. {% plugin_right_page object %}
  54. </div>
  55. </div>
  56. <div class="row">
  57. <div class="col col-md-12">
  58. {% plugin_full_width_page object %}
  59. </div>
  60. </div>
  61. {% endblock %}