1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Cleaned up tags table

This commit is contained in:
Jeremy Stretch
2018-07-03 09:47:44 -04:00
parent d0308e0f58
commit d70ef4d3b3
2 changed files with 3 additions and 5 deletions

View File

@ -53,7 +53,7 @@ class TagTable(BaseTable):
class Meta(BaseTable.Meta):
model = Tag
fields = ('pk', 'name', 'weight')
fields = ('pk', 'name', 'items', 'slug', 'actions')
class ConfigContextTable(BaseTable):