This commit is contained in:
Cyrille
2021-11-30 17:54:51 +01:00
parent b20df930a2
commit b630742fd4
2 changed files with 4 additions and 4 deletions

View File

@ -73,7 +73,7 @@ urlpatterns = [
re_path(r"^register$", register, name="register"),
# Group handling
re_path(r"^group/$", GroupListView.as_view(), name="group_list"),
re_path(r"^group/new$", GroupCreateView.as_view(), name="group_new"),
re_path(r"^group/new/$", GroupCreateView.as_view(), name="group_new"),
re_path(
r"^group/(?P<group_id>[0-9]+)/$", GroupEditView.as_view(), name="group_edit"
),