Closes #17841 Allows Tags to be displayed in specified order (#18930)

This commit is contained in:
Jason Novinger
2025-03-19 12:17:35 -05:00
committed by GitHub
parent d25605c261
commit 6b7d23d684
15 changed files with 110 additions and 18 deletions

View File

@@ -449,8 +449,8 @@ class TagTable(NetBoxTable):
class Meta(NetBoxTable.Meta):
model = Tag
fields = (
'pk', 'id', 'name', 'items', 'slug', 'color', 'description', 'object_types', 'created', 'last_updated',
'actions',
'pk', 'id', 'name', 'items', 'slug', 'color', 'weight', 'description', 'object_types',
'created', 'last_updated', 'actions',
)
default_columns = ('pk', 'name', 'items', 'slug', 'color', 'description')