mirror of
https://github.com/netbox-community/netbox.git
synced 2026-04-01 15:13:27 +02:00
* Add SavedTableConfig * Update table configuration logic to support TableConfigs * Update table config link when updating table * Correct docstring * Misc cleanup * Use multi-select widgets for column selection * Return null config params for tables with no model * Fix auto-selection of selected columns * Update migration * Clean up template * Enforce enabled/shared flags * Search/filter by table name * Misc cleanup * Fix population of selected columns * Ordering field should not be required * Enable cloning for TableConfig * Misc cleanup * Add model documentation for TableConfig * Drop slug field from TableConfig * Improve TableConfig validation * Remove add button from TableConfig list view * Fix ordering validation to account for leading hyphens
This commit is contained in:
@@ -19,6 +19,9 @@ urlpatterns = [
|
||||
path('export-templates/', include(get_model_urls('extras', 'exporttemplate', detail=False))),
|
||||
path('export-templates/<int:pk>/', include(get_model_urls('extras', 'exporttemplate'))),
|
||||
|
||||
path('table-configs/', include(get_model_urls('extras', 'tableconfig', detail=False))),
|
||||
path('table-configs/<int:pk>/', include(get_model_urls('extras', 'tableconfig'))),
|
||||
|
||||
path('saved-filters/', include(get_model_urls('extras', 'savedfilter', detail=False))),
|
||||
path('saved-filters/<int:pk>/', include(get_model_urls('extras', 'savedfilter'))),
|
||||
|
||||
|
||||
Reference in New Issue
Block a user