Explorar el Código

Add parameters to the SavedFilterTable

kkthxbye-code hace 2 años
padre
commit
e7ed280790
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      netbox/extras/tables/tables.py

+ 1 - 1
netbox/extras/tables/tables.py

@@ -114,7 +114,7 @@ class SavedFilterTable(NetBoxTable):
         model = SavedFilter
         fields = (
             'pk', 'id', 'name', 'slug', 'content_types', 'description', 'user', 'weight', 'enabled', 'shared',
-            'created', 'last_updated',
+            'created', 'last_updated', 'parameters'
         )
         default_columns = (
             'pk', 'name', 'content_types', 'user', 'description', 'enabled', 'shared',