Explorar el Código

Add IP action buttons to interface view

Julian Jacobi hace 5 años
padre
commit
ad1da22257
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  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