diff --git a/netbox/templates/dcim/device.html b/netbox/templates/dcim/device.html index e15a0710e..fa41f1130 100644 --- a/netbox/templates/dcim/device.html +++ b/netbox/templates/dcim/device.html @@ -571,8 +571,6 @@ -{# #} -{#
#} @@ -590,8 +588,6 @@ Name LAG Description -{# Tagged VLANs#} -{# Untagged VLAN#} MTU Mode Cable diff --git a/netbox/templates/dcim/inc/interface.html b/netbox/templates/dcim/inc/interface.html index c275dfd65..214e920b0 100644 --- a/netbox/templates/dcim/inc/interface.html +++ b/netbox/templates/dcim/inc/interface.html @@ -213,7 +213,7 @@ {{ ip }} -{# Primary/status/role#} + {# Primary/status/role#} {% if device.primary_ip4 == ip or device.primary_ip6 == ip %} Primary @@ -224,7 +224,7 @@ {% endif %} -{# VRF#} + {#VRF#} {% if ip.vrf %} {{ ip.vrf.name }} @@ -233,7 +233,7 @@ {% endif %} -{# Description#} + {#Description#} {% if ip.description %} {{ ip.description }} @@ -242,7 +242,7 @@ {% endif %} -{# Buttons#} + {#Buttons#} {% if perms.ipam.change_ipaddress %} @@ -266,12 +266,12 @@ {% if iface.untagged_vlan or iface.tagged_vlans.all %} - {# Placeholder#} + {#Placeholder#} {% if perms.dcim.change_interface or perms.dcim.delete_interface %} {% endif %} - {# VLAN table #} + {#VLAN table#} @@ -284,54 +284,54 @@ - {# Untagged VLAN #} + {#Untagged VLAN#} {% if iface.untagged_vlan %} - {# VLAN ID #} + {#VLAN ID#} - {# VLAN tag #} + {#VLAN tag#} - {# VLAN status #} + {#VLAN status#} - {# VLAN name #} + {#VLAN name#} - {# VLAN description #} + {#VLAN description#} {% endif %} - {# Tagged VLANs #} + {#Tagged VLANs#} {% if iface.tagged_vlans.all %} {% for tag in iface.tagged_vlans.all %} - {# VLAN ID #} + {#VLAN ID#} - {# VLAN tag #} + {#VLAN tag#} - {# VLAN status #} + {#VLAN status#} - {# VLAN name #} + {#VLAN name#} - {# VLAN description #} + {#VLAN description#} {% endfor %}
{{ iface.untagged_vlan.vid }}
  • {{ iface.untagged_vlan.status }} {{ iface.untagged_vlan.name }}{{ iface.untagged_vlan.description }}
    {{ tag.vid }}
  • {{ tag.status }} {{ tag.name }}{{ tag.description }}