From ea3852724044441453abf712f15b78daa09220ac Mon Sep 17 00:00:00 2001 From: Dhairya Date: Wed, 25 Feb 2026 09:00:18 +0530 Subject: [PATCH] Fix Create-Group-UI-Fixes --- web/templates/web/study/create_group.html | 168 +++++++++++++++++++--- 1 file changed, 149 insertions(+), 19 deletions(-) diff --git a/web/templates/web/study/create_group.html b/web/templates/web/study/create_group.html index 6fe66612e..65574b5b3 100644 --- a/web/templates/web/study/create_group.html +++ b/web/templates/web/study/create_group.html @@ -6,32 +6,162 @@ Create Study Group {% endblock title %} {% block content %} -
-
-
+
+
+
+
+ +

Create a Study Group

-

Fill in the details below to get started.

+

Fill in the details below to get started.

- - -
+ {% if form.errors %} + + {% endif %} + {% csrf_token %} -
{{ form.as_p }}
-
+ {% for field in form %} +
+ {% if field.field.widget.input_type == "checkbox" %} + + {% else %} + + {{ field }} + {% endif %} + {% if field.help_text %}

{{ field.help_text }}

{% endif %} + {% if field.errors %} + {% for error in field.errors %} +

+ {{ error }} +

+ {% endfor %} + {% endif %} +
+ {% endfor %} +
+ {% endblock content %}