From fa10c62d83f9089c9dad35c8881963a952bc2195 Mon Sep 17 00:00:00 2001 From: Eduardo Silva Date: Wed, 28 Jan 2026 17:24:19 -0300 Subject: [PATCH] Add schedule grid visualization --- templates/scheduler/scheduleprofile_form.html | 143 +++++++++++++++++- 1 file changed, 142 insertions(+), 1 deletion(-) diff --git a/templates/scheduler/scheduleprofile_form.html b/templates/scheduler/scheduleprofile_form.html index 0d19aec..8f371be 100644 --- a/templates/scheduler/scheduleprofile_form.html +++ b/templates/scheduler/scheduleprofile_form.html @@ -2,6 +2,14 @@ {% load i18n %} {% load crispy_forms_tags %} +{% block page_custom_head %} + +{% endblock %} + {% block content %}
@@ -16,8 +24,58 @@
- + {% if profile %} +
+
+
+
+

{% trans "Schedule Visualization" %}

+
+
+
+
+
{% trans "M" %} +
+
{% trans "T" %} +
+
{% trans "W" %} +
+
{% trans "T" %} +
+
{% trans "F" %} +
+
{% trans "S" %} +
+
{% trans "S" %} +
+
+
+ {% for hour in "012345678901234567890123"|make_list %} +
+
+ {% for day in "0123456"|make_list %} +
+
+ {% endfor %} +
+
+ {% endfor %} +
+
+
+ {% trans "Active" %}   + {% trans "Inactive" %} +
+
+
+
+
+ +
@@ -84,3 +142,86 @@
{% endblock %} + +{% block custom_page_scripts %} + +{% endblock %} \ No newline at end of file