mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-19 05:21:55 -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):
|
||||
queryset = Tag.objects.all()
|
||||
queryset = Tag.restricted.all()
|
||||
model_form = forms.TagCSVForm
|
||||
table = tables.TagTable
|
||||
default_return_url = 'extras:tag_list'
|
||||
|
Loading…
Reference in New Issue
Block a user