mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-19 17:59:11 -06:00
Fix queryset for TagBulkImportView
This commit is contained in:
parent
360c56ec34
commit
fd18395f78
@ -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