{% extends "base.html" %} {% block title %}Planning — GMAO Collège{% endblock %} {% block content %}
| {{ day }} | {% endfor %}|
|---|---|
| {% else %} {% set td_class = '' %} {% if day_info.is_permanence %} {% set td_class = 'table-success' %} {% elif day_info.is_holiday %} {% set td_class = 'holiday-day' %} {% elif day_info.is_vacation %} {% set td_class = 'table-dark' %} {% elif day_info.is_leave %} {% set td_class = 'table-warning' %} {% elif day_info.is_weekend %} {% set td_class = 'table-secondary' %} {% endif %} |
{% set date_str = day_info.date.strftime('%Y-%m-%d') %}
{{ day_info.day }}
{% if day_info.deviation_hours %}{{ day_info.deviation_hours }}{% endif %}
{% if day_info.events %}
{% for event in day_info.events[:3] %}
{% if event.start_time %}{{ event.start_time.strftime('%H:%M') }} {% endif %}{{ event.title[:18] }}
{% endfor %}
{% if day_info.events|length > 3 %}
+{{ day_info.events|length - 3 }} autre(s)
{% endif %}
{% endif %}
|
{% endif %}
{% endfor %}