{% extends "base.html" %} {% block title %}Calendrier - GMAO{% endblock %} {% block content %}

Calendrier des interventions

Precedent {{ month_name }} {{ year }} Suivant
{% for day_name in ['Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam', 'Dim'] %}
{{ day_name }}
{% endfor %}
{% for week in weeks %}
{% for day in week %}
{% if day %}
{{ day['day'] }}
{% for item in day['items'] %}
{{ item.start_time }} {{ item.title[:20] if item.title else '' }}
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}
Preventif Curatif Admin Information
{% endblock %}