{% extends "chrono/manager_agenda_month_view.html" %} {% load i18n %} {% block content %} {% if agenda.is_complete %} {% for week, slots in slots_by_week.items %} {% if forloop.first %} {% endif %} {% for slot in slots %} {% endfor %} {% for slot in slots %} {% if slot.date < agenda.date_start or agenda.date_end and slot.date > agenda.date_end %} {% else %} {% endif %} {% endfor %} {% if forloop.last %}
{{ slot.date|date:"l j" }}
{% trans "Week" %} {{ week }}{{ slot }}
{% endif %} {% endfor %} {% else %}

{% trans "Configuration is not completed yet." %}

{% endif %}
{% if agenda.date_end %} {% blocktrans trimmed with date_start=agenda.date_start date_end=agenda.date_end %} This agenda applies from {{ date_start }} to {{ date_end }}. {% endblocktrans %} {% else %} {% blocktrans trimmed with date_start=agenda.date_start %} This agenda applies from {{ date_start }}. {% endblocktrans %} {% endif %}
{% endblock %}