From bb202ea93a268545177e0e813eed0091ff3558c7 Mon Sep 17 00:00:00 2001 From: Arthur Hanson Date: Thu, 18 Jul 2024 16:08:52 +0700 Subject: [PATCH] 7025 missing file --- netbox/templates/circuits/circuitgroup.html | 53 +++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 netbox/templates/circuits/circuitgroup.html diff --git a/netbox/templates/circuits/circuitgroup.html b/netbox/templates/circuits/circuitgroup.html new file mode 100644 index 000000000..65556d1cf --- /dev/null +++ b/netbox/templates/circuits/circuitgroup.html @@ -0,0 +1,53 @@ +{% extends 'generic/object.html' %} +{% load static %} +{% load helpers %} +{% load plugins %} +{% load render_table from django_tables2 %} +{% load i18n %} + +{% block breadcrumbs %} + {{ block.super }} + +{% endblock %} + +{% block content %} +
+
+
+
{% trans "Circuit Group" %}
+ + + + + + + + + +
{% trans "Name" %}{{ object.name }}
{% trans "Tenant" %} + {% if object.tenant.group %} + {{ object.tenant.group|linkify }} / + {% endif %} + {{ object.tenant|linkify|placeholder }} +
+
+ {% include 'inc/panels/tags.html' %} + {% plugin_left_page object %} +
+
+ {% include 'inc/panels/related_objects.html' %} + {% include 'inc/panels/comments.html' %} + {% include 'inc/panels/custom_fields.html' %} + {% plugin_right_page object %} +
+
+
+
+
+
{% trans "Circuits" %}
+ {% htmx_table 'circuits:circuit_list' provider_network_id=object.pk %} +
+ {% plugin_full_width_page object %} +
+
+{% endblock %}