Sfoglia il codice sorgente

#13086: Add virtual circuit to InterfaceTable

Jeremy Stretch 1 anno fa
parent
commit
d511ba487d
1 ha cambiato i file con 4 aggiunte e 0 eliminazioni
  1. 4 0
      netbox/dcim/tables/devices.py

+ 4 - 0
netbox/dcim/tables/devices.py

@@ -647,6 +647,10 @@ class InterfaceTable(BaseInterfaceTable, ModularDeviceComponentTable, PathEndpoi
         verbose_name=_('VRF'),
         verbose_name=_('VRF'),
         linkify=True
         linkify=True
     )
     )
+    virtual_circuit_termination = tables.Column(
+        verbose_name=_('Virtual Circuit'),
+        linkify=True
+    )
     tags = columns.TagColumn(
     tags = columns.TagColumn(
         url_name='dcim:interface_list'
         url_name='dcim:interface_list'
     )
     )