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

Rename Tag.comments to description

This commit is contained in:
Jeremy Stretch
2020-03-13 17:00:00 -04:00
parent 1a8554fd32
commit d4f6909859
8 changed files with 40 additions and 25 deletions

View File

@ -77,7 +77,7 @@ class TagTable(BaseTable):
class Meta(BaseTable.Meta):
model = Tag
fields = ('pk', 'name', 'items', 'slug', 'color', 'actions')
fields = ('pk', 'name', 'items', 'slug', 'color', 'description', 'actions')
class TaggedItemTable(BaseTable):