mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Fix queryset for TagBulkImportView
This commit is contained in:
@@ -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'
|
||||
|
Reference in New Issue
Block a user