admin: fix incorrect view name for groups

This commit is contained in:
Jens Langhammer 2020-08-16 17:41:48 +02:00
parent 9ebbb51cf7
commit 7923468a01
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ urlpatterns = [
name="user-password-reset",
),
# 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/<uuid:pk>/update/",