فهرست منبع

Merge pull request #5928 from wobcom/feature/ip-actions-in-interface-view

Add IP action buttons to interface view
Jeremy Stretch 5 سال پیش
والد
کامیت
cae784ff52
1فایلهای تغییر یافته به همراه3 افزوده شده و 0 حذف شده
  1. 3 0
      netbox/ipam/tables.py

+ 3 - 0
netbox/ipam/tables.py

@@ -433,6 +433,9 @@ class InterfaceIPAddressTable(BaseTable):
     tenant = tables.TemplateColumn(
         template_code=TENANT_LINK
     )
+    actions = ButtonsColumn(
+        model=IPAddress
+    )
 
     class Meta(BaseTable.Meta):
         model = IPAddress