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

Add dedicated view for tags

This commit is contained in:
Jeremy Stretch
2021-03-26 15:25:18 -04:00
parent 981e7017bb
commit 36c903da04
5 changed files with 63 additions and 91 deletions

View File

@@ -38,6 +38,9 @@ OBJECTCHANGE_REQUEST_ID = """
class TagTable(BaseTable):
pk = ToggleColumn()
name = tables.Column(
linkify=True
)
color = ColorColumn()
actions = ButtonsColumn(Tag)