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

{{ title }}

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

{% 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 %}