diff --git a/netbox/templates/dcim/device.html b/netbox/templates/dcim/device.html index 5ede19d78..fdb5aec08 100644 --- a/netbox/templates/dcim/device.html +++ b/netbox/templates/dcim/device.html @@ -585,6 +585,8 @@ 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 2fe970fd7..aa0d6df85 100644 --- a/netbox/templates/dcim/inc/interface.html +++ b/netbox/templates/dcim/inc/interface.html @@ -38,6 +38,23 @@ {% endfor %} + {# Tagged ports #} + + {% if iface.tagged_vlans.all %} + {% for tag in iface.tagged_vlans.all %} + {{ tag }} +
+ {% endfor %} + {% endif %} + + + {# Untagged ports #} + + {% if iface.untagged_vlan %} + {{ iface.untagged_vlan }} + {% endif %} + + {# MTU #} {{ iface.mtu|default:"—" }}