This commit is contained in:
Ross
2022-02-08 12:38:40 +00:00
parent a4b13371d4
commit 52a2318f7e
2 changed files with 3 additions and 3 deletions
@@ -13,8 +13,8 @@
<!-- {{ form.media }} -->
{% endblock %}
{% block content %}
<h2>Edit Group / {{cidusergroup.name}}</h2>
Use this form to edit a CID user group.
<h2>Add / Edit Group / {{cidusergroup.name}}</h2>
Use this form to create / edit a CID user group.
<form action="" method="post" enctype="multipart/form-data" id="condition-form">
{% csrf_token %}
+1 -1
View File
@@ -57,7 +57,7 @@ urlpatterns = [
"cids/group/<int:pk>/update", views.CidUserGroupUpdate.as_view(), name="group_update"
),
path(
"cids/group/<int:pk>/create", views.CidUserGroupCreate.as_view(), name="group_create"
"cids/group/create", views.CidUserGroupCreate.as_view(), name="group_create"
),
path("cids/create", views.manage_cid_users, name="manage_cid_users"),
]