diff --git a/netbox/templates/circuits/circuit.html b/netbox/templates/circuits/circuit.html index cbae7aeac..751524902 100644 --- a/netbox/templates/circuits/circuit.html +++ b/netbox/templates/circuits/circuit.html @@ -44,6 +44,7 @@
+ Circuit
@@ -107,6 +108,7 @@
+ Comments
diff --git a/netbox/templates/circuits/circuit_list.html b/netbox/templates/circuits/circuit_list.html index 2b40e0df0..e9d8d684c 100644 --- a/netbox/templates/circuits/circuit_list.html +++ b/netbox/templates/circuits/circuit_list.html @@ -21,6 +21,7 @@
+ Search
diff --git a/netbox/templates/circuits/provider.html b/netbox/templates/circuits/provider.html index 333a07faf..b5796a98e 100644 --- a/netbox/templates/circuits/provider.html +++ b/netbox/templates/circuits/provider.html @@ -36,6 +36,7 @@
+ Provider
@@ -73,6 +74,7 @@
+ Comments
@@ -87,6 +89,7 @@
+ Circuit: Circuits
diff --git a/netbox/templates/dcim/component_template_add.html b/netbox/templates/dcim/component_template_add.html index d305debf5..978f365d0 100644 --- a/netbox/templates/dcim/component_template_add.html +++ b/netbox/templates/dcim/component_template_add.html @@ -18,6 +18,7 @@ {% endif %}
+ New {{ component_type }}
diff --git a/netbox/templates/dcim/device.html b/netbox/templates/dcim/device.html index 0f405b68e..0ff4e8595 100644 --- a/netbox/templates/dcim/device.html +++ b/netbox/templates/dcim/device.html @@ -11,6 +11,7 @@
+ Device
@@ -71,6 +72,7 @@
+ Management
@@ -135,6 +137,7 @@ {% if request.user.is_authenticated %}
+ Secrets
{% if secrets %} @@ -163,6 +166,7 @@ {% endif %}
+ IP Addresses
{% if ip_addresses %} @@ -187,6 +191,7 @@
+ Critical Connections
@@ -254,6 +259,7 @@
+ Comments
@@ -266,6 +272,7 @@
+ Related Devices
{% if related_devices %} @@ -291,6 +298,7 @@ {% if device_bays or device.device_type.is_parent_device %}
+ Device Bays
@@ -315,6 +323,7 @@ {% if interfaces or device.device_type.is_network_device %}
+ Interfaces
@@ -339,6 +348,7 @@ {% if cs_ports or device.device_type.is_console_server %}
+ Console Server Ports
@@ -363,6 +373,7 @@ {% if power_outlets or device.device_type.is_pdu %}
+ Power Outlets
diff --git a/netbox/templates/dcim/device_inventory.html b/netbox/templates/dcim/device_inventory.html index e1e8f518d..76cab31a5 100644 --- a/netbox/templates/dcim/device_inventory.html +++ b/netbox/templates/dcim/device_inventory.html @@ -8,6 +8,7 @@
+ Chassis
@@ -25,6 +26,7 @@
+ Hardware
diff --git a/netbox/templates/dcim/device_lldp_neighbors.html b/netbox/templates/dcim/device_lldp_neighbors.html index b37f1860e..c08ecd4dc 100644 --- a/netbox/templates/dcim/device_lldp_neighbors.html +++ b/netbox/templates/dcim/device_lldp_neighbors.html @@ -6,6 +6,7 @@ {% include 'dcim/inc/_device_header.html' with active_tab='lldp-neighbors' %}
+ LLDP Neighbors
@@ -21,7 +22,7 @@ {% for iface in interfaces %} - + {% if iface.connection %} {% with iface.get_connected_interface as connected_iface %}
{{ iface }} {{ iface }} diff --git a/netbox/templates/dcim/devicebay_populate.html b/netbox/templates/dcim/devicebay_populate.html index a9d84c5e7..97b342798 100644 --- a/netbox/templates/dcim/devicebay_populate.html +++ b/netbox/templates/dcim/devicebay_populate.html @@ -17,7 +17,9 @@ {% endif %}
-
Populate {{ device_bay }}
+
+ + Populate {{ device_bay }}
diff --git a/netbox/templates/dcim/devicetype.html b/netbox/templates/dcim/devicetype.html index f3ae5aa78..758b0d0b0 100644 --- a/netbox/templates/dcim/devicetype.html +++ b/netbox/templates/dcim/devicetype.html @@ -37,6 +37,7 @@
+ Chassis
@@ -60,6 +61,7 @@
+ Function
@@ -77,21 +79,21 @@
- {% include 'dcim/inc/devicetype_component_table.html' with table=consoleport_table title='Console Ports' add_url='dcim:devicetype_add_consoleport' delete_url='dcim:devicetype_delete_consoleport' %} - {% include 'dcim/inc/devicetype_component_table.html' with table=powerport_table title='Power Ports' add_url='dcim:devicetype_add_powerport' delete_url='dcim:devicetype_delete_powerport' %} + {% include 'dcim/inc/devicetype_component_table.html' with table=consoleport_table title='Console Ports' icon='desktop' add_url='dcim:devicetype_add_consoleport' delete_url='dcim:devicetype_delete_consoleport' %} + {% include 'dcim/inc/devicetype_component_table.html' with table=powerport_table title='Power Ports' icon='plug' add_url='dcim:devicetype_add_powerport' delete_url='dcim:devicetype_delete_powerport' %}
{% if devicetype.is_parent_device %} - {% include 'dcim/inc/devicetype_component_table.html' with table=devicebay_table title='Device Bays' add_url='dcim:devicetype_add_devicebay' delete_url='dcim:devicetype_delete_devicebay' %} + {% include 'dcim/inc/devicetype_component_table.html' with table=devicebay_table title='Device Bays' icon='puzzle-piece' add_url='dcim:devicetype_add_devicebay' delete_url='dcim:devicetype_delete_devicebay' %} {% endif %} {% if devicetype.is_network_device %} - {% include 'dcim/inc/devicetype_component_table.html' with table=interface_table title='Interfaces' add_url='dcim:devicetype_add_interface' delete_url='dcim:devicetype_delete_interface' %} + {% include 'dcim/inc/devicetype_component_table.html' with table=interface_table title='Interfaces' icon='exchange' add_url='dcim:devicetype_add_interface' delete_url='dcim:devicetype_delete_interface' %} {% endif %} {% if devicetype.is_console_server %} - {% include 'dcim/inc/devicetype_component_table.html' with table=consoleserverport_table title='Console Server Ports' add_url='dcim:devicetype_add_consoleserverport' delete_url='dcim:devicetype_delete_consoleserverport' %} + {% include 'dcim/inc/devicetype_component_table.html' with table=consoleserverport_table title='Console Server Ports' icon='desktop' add_url='dcim:devicetype_add_consoleserverport' delete_url='dcim:devicetype_delete_consoleserverport' %} {% endif %} {% if devicetype.is_pdu %} - {% include 'dcim/inc/devicetype_component_table.html' with table=poweroutlet_table title='Power Outlets' add_url='dcim:devicetype_add_poweroutlet' delete_url='dcim:devicetype_delete_poweroutlet' %} + {% include 'dcim/inc/devicetype_component_table.html' with table=poweroutlet_table title='Power Outlets' icon='plug' add_url='dcim:devicetype_add_poweroutlet' delete_url='dcim:devicetype_delete_poweroutlet' %} {% endif %}
diff --git a/netbox/templates/dcim/inc/devicetype_component_table.html b/netbox/templates/dcim/inc/devicetype_component_table.html index 55bed30e9..7009a4221 100644 --- a/netbox/templates/dcim/inc/devicetype_component_table.html +++ b/netbox/templates/dcim/inc/devicetype_component_table.html @@ -5,6 +5,7 @@
Add {{ title }} + {{ title }}
{% render_table table 'table.html' %} @@ -20,6 +21,7 @@ {% else %}
+ {{ title }}
{% render_table table 'table.html' %} diff --git a/netbox/templates/dcim/poweroutlet_connect.html b/netbox/templates/dcim/poweroutlet_connect.html index 4e6356cb1..01dbd5885 100644 --- a/netbox/templates/dcim/poweroutlet_connect.html +++ b/netbox/templates/dcim/poweroutlet_connect.html @@ -18,7 +18,9 @@
{% endif %}
-
Connect {{ poweroutlet.device }} {{ poweroutlet }}
+
+ + Connect {{ poweroutlet.device }} {{ poweroutlet }}