{% extends "base.html" %} {% load i18n %} {% load crispy_forms_tags %} {% block page_custom_head %} {% endblock %} {% block content %}

{{ title }}

{% csrf_token %}
{{ form|crispy }}
{% if profile %}

{% trans "Schedule Visualization" %}

Mon
Tue
Wed
Thu
Fri
Sat
Sun
{% for hour in "012345678901234567890123"|make_list %}
{% for day in "0123456"|make_list %}
{% endfor %}
{% endfor %}
{% trans "Active" %}   {% trans "Inactive" %}
  • {% trans 'Current time' %}: {{ now }}
  • {% trans 'Becomes active at' %}: {{ profile.next_dates.enable|default_if_none:'' }}
  • {% trans 'Becomes inactive at' %}: {{ profile.next_dates.disable|default_if_none:'' }}

{% trans "Time Intervals" %}

{% trans "Add Interval" %}
{% for slot in slots %} {% empty %} {% endfor %}
{% trans "Start Day" %} {% trans "Start Time" %} {% trans "End Day" %} {% trans "End Time" %} {% trans "Actions" %}
{{ slot.get_start_weekday_display }} {{ slot.start_time }} {{ slot.get_end_weekday_display }} {{ slot.end_time }}
{% trans "No time intervals found." %}
{% endif %}
{% trans "Cancel" %}
{% endblock %} {% block custom_page_scripts %} {% endblock %}