admin: fix incorrect view name for groups
This commit is contained in:
parent
9ebbb51cf7
commit
7923468a01
|
@ -234,7 +234,7 @@ urlpatterns = [
|
||||||
name="user-password-reset",
|
name="user-password-reset",
|
||||||
),
|
),
|
||||||
# Groups
|
# Groups
|
||||||
path("groups/", groups.GroupListView.as_view(), name="group"),
|
path("groups/", groups.GroupListView.as_view(), name="groups"),
|
||||||
path("groups/create/", groups.GroupCreateView.as_view(), name="group-create"),
|
path("groups/create/", groups.GroupCreateView.as_view(), name="group-create"),
|
||||||
path(
|
path(
|
||||||
"groups/<uuid:pk>/update/",
|
"groups/<uuid:pk>/update/",
|
||||||
|
|
Reference in New Issue