From 9447ab8124879765649d145eb55631d97171f86b Mon Sep 17 00:00:00 2001 From: Martin Hauser Date: Mon, 6 May 2024 22:14:27 +0200 Subject: [PATCH] feat(templates): Add basic template for ACI Tenant --- .../netbox_aci_plugin/acitenant.html | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 netbox_aci_plugin/templates/netbox_aci_plugin/acitenant.html diff --git a/netbox_aci_plugin/templates/netbox_aci_plugin/acitenant.html b/netbox_aci_plugin/templates/netbox_aci_plugin/acitenant.html new file mode 100644 index 0000000..03dab1c --- /dev/null +++ b/netbox_aci_plugin/templates/netbox_aci_plugin/acitenant.html @@ -0,0 +1,30 @@ + +{% extends 'generic/object.html' %} +{% load render_table from django_tables2 %} + +{% block content %} +
+
+
+ +
ACI Tenant
+ + + + + + + + + + +
Alias{{ object.alias }}
Description{{ object.description }}
+
+ {% include 'inc/panels/custom_fields.html' %} +
+
+ {% include 'inc/panels/tags.html' %} + {% include 'inc/panels/comments.html' %} +
+
+{% endblock content %}