diff --git a/netbox/utilities/views.py b/netbox/utilities/views.py index 0c509d63d..98bddd860 100644 --- a/netbox/utilities/views.py +++ b/netbox/utilities/views.py @@ -150,7 +150,7 @@ class GetReturnURLMixin: # Attempt to dynamically resolve the list view for the object if hasattr(self, 'queryset'): try: - return reverse(get_viewname(self.queryset.model, 'list')) + return get_action_url(self.queryset.model, action='list') except NoReverseMatch: pass