mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-27 10:58:37 -06:00
Fix queryset for TagBulkImportView
This commit is contained in:
parent
f840a1e22e
commit
869d06d61d
@ -77,7 +77,7 @@ class TagDeleteView(ObjectDeleteView):
|
|||||||
|
|
||||||
|
|
||||||
class TagBulkImportView(BulkImportView):
|
class TagBulkImportView(BulkImportView):
|
||||||
queryset = Tag.objects.all()
|
queryset = Tag.restricted.all()
|
||||||
model_form = forms.TagCSVForm
|
model_form = forms.TagCSVForm
|
||||||
table = tables.TagTable
|
table = tables.TagTable
|
||||||
default_return_url = 'extras:tag_list'
|
default_return_url = 'extras:tag_list'
|
||||||
|
Loading…
Reference in New Issue
Block a user