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#}
{{ iface.untagged_vlan.vid }}
|
- {# VLAN tag #}
+ {#VLAN tag#}
|
- {# VLAN status #}
+ {#VLAN status#}
{{ iface.untagged_vlan.status }}
|
- {# VLAN name #}
+ {#VLAN name#}
{{ iface.untagged_vlan.name }} |
- {# VLAN description #}
+ {#VLAN description#}
{{ iface.untagged_vlan.description }} |
{% endif %}
- {# Tagged VLANs #}
+ {#Tagged VLANs#}
{% if iface.tagged_vlans.all %}
{% for tag in iface.tagged_vlans.all %}
- {# VLAN ID #}
+ {#VLAN ID#}
{{ tag.vid }}
|
- {# VLAN tag #}
+ {#VLAN tag#}
|
- {# VLAN status #}
+ {#VLAN status#}
{{ tag.status }}
|
- {# VLAN name #}
+ {#VLAN name#}
{{ tag.name }} |
- {# VLAN description #}
+ {#VLAN description#}
{{ tag.description }} |
{% endfor %}
| |