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

Closes #2557: Added object view for tags

This commit is contained in:
Jeremy Stretch
2018-11-15 16:47:41 -05:00
parent 23cde65add
commit 3366a6ae3d
7 changed files with 155 additions and 7 deletions

View File

@@ -208,6 +208,11 @@ class AddRemoveTagsForm(forms.Form):
self.fields['remove_tags'] = TagField(required=False)
class TagFilterForm(BootstrapMixin, forms.Form):
model = Tag
q = forms.CharField(required=False, label='Search')
#
# Config contexts
#