{% extends "base.html" %} {% block title %}Planning — GMAO Collège{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Planning

{{ stats.overdue }}
En retard
{{ stats.scheduled_today }}
Aujourd'hui
{{ stats.preventive_tasks }}
Tâches préventives
{{ stats.meters_warning }}
Compteurs en alerte

Planning

{% for week in weeks %} {% for day in week %} {% endfor %} {% endfor %}
Lun Mar Mer Jeu Ven Sam Dim
{{ day.date.day }} {% if day.is_on_leave %}{% endif %}
{% for cl in day.closures %}
{{ cl.label[:20] }}
{% endfor %} {% for interv in day.interventions %} {{ interv.title[:18] }}{% if interv.title|length > 18 %}…{% endif %} {% endfor %}
{% for week in weeks %} {% for day in week %} {% if not day.outside_month and (day.interventions or day.closures or day.is_today) %}
{% if day.is_today %}Auj.{% endif %} {{ day.date|date_fmt }} {% if day.is_closed %} Fermé {% elif day.is_on_leave %} Congé {% endif %}
{% for cl in day.closures %} 🏖 {{ cl.label }} {% endfor %} {% for interv in day.interventions %} {{ interv.title }} {% endfor %}
{% endif %} {% endfor %} {% endfor %} {% if not weeks|length %}

Aucun événement ce mois-ci

{% endif %}
{% endblock %}