From ade897a26a1ab00a58802d4385306a8ab1b5ce12 Mon Sep 17 00:00:00 2001 From: Stephen Kiely Date: Mon, 25 Sep 2023 08:19:28 -0500 Subject: [PATCH] Fix access_grant_edit --- nautobot_chatops/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nautobot_chatops/views.py b/nautobot_chatops/views.py index 2cbdb5e4..a31a4e67 100644 --- a/nautobot_chatops/views.py +++ b/nautobot_chatops/views.py @@ -64,7 +64,7 @@ class AccessGrantCreateView(PermissionRequiredMixin, ObjectEditView): model = AccessGrant queryset = AccessGrant.objects.all() model_form = forms.AccessGrantForm - template_name = "nautobot/access_grant_edit.html" + template_name = "nautobot_chatops/access_grant_edit.html" default_return_url = "plugins:nautobot_chatops:accessgrant_list"