2
0

aggregate.html 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {% extends 'generic/object.html' %}
  2. {% load buttons %}
  3. {% load helpers %}
  4. {% load plugins %}
  5. {% block breadcrumbs %}
  6. <li class="breadcrumb-item"><a href="{% url 'ipam:aggregate_list' %}">Aggregates</a></li>
  7. <li class="breadcrumb-item"><a href="{% url 'ipam:aggregate_list' %}?rir_id={{ object.rir.pk }}">{{ object.rir }}</a></li>
  8. <li class="breadcrumb-item">{{ object }}</li>
  9. {% endblock %}
  10. {% block extra_controls %}
  11. {% include 'ipam/inc/toggle_available.html' %}
  12. {% endblock %}
  13. {% block content %}
  14. <div class="row">
  15. <div class="col col-md-6">
  16. <div class="card">
  17. <h5 class="card-header">
  18. Aggregate
  19. </h5>
  20. <div class="card-body">
  21. <table class="table table-hover attr-table">
  22. <tr>
  23. <td>Family</td>
  24. <td>IPv{{ object.family }}</td>
  25. </tr>
  26. <tr>
  27. <td>RIR</td>
  28. <td>
  29. <a href="{% url 'ipam:aggregate_list' %}?rir={{ object.rir.slug }}">{{ object.rir }}</a>
  30. </td>
  31. </tr>
  32. <tr>
  33. <td>Utilization</td>
  34. <td>
  35. {{ object.get_utilization }}%
  36. </td>
  37. </tr>
  38. <tr>
  39. <td>Tenant</td>
  40. <td>
  41. {% if object.tenant %}
  42. {% if prefix.object.group %}
  43. <a href="{{ object.tenant.group.get_absolute_url }}">{{ object.tenant.group }}</a> /
  44. {% endif %}
  45. <a href="{{ object.tenant.get_absolute_url }}">{{ object.tenant }}</a>
  46. {% else %}
  47. <span class="text-muted">None</span>
  48. {% endif %}
  49. </td>
  50. </tr>
  51. <tr>
  52. <td>Date Added</td>
  53. <td>{{ object.date_added|annotated_date|placeholder }}</td>
  54. </tr>
  55. <tr>
  56. <td>Description</td>
  57. <td>{{ object.description|placeholder }}</td>
  58. </tr>
  59. </table>
  60. </div>
  61. </div>
  62. {% plugin_left_page object %}
  63. </div>
  64. <div class="col col-md-6">
  65. {% include 'inc/custom_fields_panel.html' %}
  66. {% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='ipam:aggregate_list' %}
  67. {% plugin_right_page object %}
  68. </div>
  69. </div>
  70. <div class="row mb-3">
  71. <div class="col col-md-12">
  72. {% plugin_full_width_page object %}
  73. </div>
  74. </div>
  75. <div class="row mb-3">
  76. <div class="col col-md-12">
  77. {% include 'utilities/obj_table.html' with table=prefix_table table_template='inc/panel_table.html' heading='Child Prefixes' bulk_edit_url='ipam:prefix_bulk_edit' bulk_delete_url='ipam:prefix_bulk_delete' %}
  78. </div>
  79. </div>
  80. {% endblock %}