소스 검색

#13086: Add virtual circuit to InterfaceTable

Jeremy Stretch 1 년 전
부모
커밋
d511ba487d
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  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'),
         linkify=True
     )
+    virtual_circuit_termination = tables.Column(
+        verbose_name=_('Virtual Circuit'),
+        linkify=True
+    )
     tags = columns.TagColumn(
         url_name='dcim:interface_list'
     )