service.html 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {% extends 'generic/object.html' %}
  2. {% load buttons %}
  3. {% load helpers %}
  4. {% load perms %}
  5. {% load plugins %}
  6. {% load i18n %}
  7. {% block breadcrumbs %}
  8. {{ block.super }}
  9. {% if object.device %}
  10. <li class="breadcrumb-item"><a href="{% url 'ipam:service_list' %}?device_id={{ object.device.pk }}">{{ object.device }}</a></li>
  11. {% elif object.virtual_machine %}
  12. <li class="breadcrumb-item"><a href="{% url 'ipam:service_list' %}?virtual_machine_id={{ object.virtual_machine.pk }}">{{ object.virtual_machine }}</a></li>
  13. {% endif %}
  14. {% endblock %}
  15. {% block content %}
  16. <div class="row mb-3">
  17. <div class="col col-12 col-md-6">
  18. <div class="card">
  19. <h2 class="card-header">{% trans "Service" %}</h2>
  20. <table class="table table-hover attr-table">
  21. <tr>
  22. <th scope="row">{% trans "Name" %}</th>
  23. <td>{{ object.name }}</td>
  24. </tr>
  25. <tr>
  26. <th scope="row">{% trans "Parent" %}</th>
  27. <td>{{ object.parent|linkify }}</td>
  28. </tr>
  29. <tr>
  30. <th scope="row">{% trans "Protocol" %}</th>
  31. <td>{{ object.get_protocol_display }}</td>
  32. </tr>
  33. <tr>
  34. <th scope="row">{% trans "Ports" %}</th>
  35. <td>{{ object.port_list }}</td>
  36. </tr>
  37. <tr>
  38. <th scope="row">{% trans "IP Addresses" %}</th>
  39. <td>
  40. {% for ipaddress in object.ipaddresses.all %}
  41. {{ ipaddress|linkify }}<br />
  42. {% empty %}
  43. {{ ''|placeholder }}
  44. {% endfor %}
  45. </td>
  46. </tr>
  47. <tr>
  48. <th scope="row">{% trans "Description" %}</th>
  49. <td>{{ object.description|placeholder }}</td>
  50. </tr>
  51. </table>
  52. </div>
  53. {% plugin_left_page object %}
  54. </div>
  55. <div class="col col-12 col-md-6">
  56. {% include 'inc/panels/custom_fields.html' %}
  57. {% include 'inc/panels/tags.html' %}
  58. {% include 'inc/panels/comments.html' %}
  59. {% plugin_right_page object %}
  60. </div>
  61. </div>
  62. <div class="row mb-3">
  63. <div class="col col-md-12">
  64. {% plugin_full_width_page object %}
  65. </div>
  66. </div>
  67. {% endblock %}