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

Planificateur automatique

{{ due_tasks|length }}
Taches dues (4 sem.)
{{ planned_tasks|length }}
Deja planifiees
{{ overdue_tasks|length }}
En retard
{% if groups %}
Taches dues regroupees par zone
{% for zone, tasks in groups.items() %}
{{ zone }} {{ tasks|length }}
    {% for t in tasks %}
  • {{ t.equipment.name }} {% if t.room %}{{ t.room.name }}{% endif %} - {{ t.duration }} min - du {{ t.due_date.strftime('%d/%m/%Y') }} {% if t.due_date < today %} En retard {% endif %}
  • {% endfor %}
{% endfor %}
{% else %}
Aucune tache due dans les 4 prochaines semaines.
{% endif %} {% if planned_tasks %}
Taches planifiees
{% for t in planned_tasks[:20] %} {% endfor %}
DateHeureEquipementSalleDureeStatut
{{ t.scheduled_date.strftime('%d/%m/%Y') if t.scheduled_date else '—' }} {{ t.scheduled_start.strftime('%H:%M') if t.scheduled_start else '—' }} {{ t.equipment.name if t.equipment else '—' }} {{ t.room.name if t.room else '—' }} {{ t.estimated_duration or 60 }} min
{% endif %} {% if overdue_tasks %}
Taches en retard
{% for t in overdue_tasks %} {% endfor %}
Date prevueEquipementSalleDuree
{{ t.scheduled_date.strftime('%d/%m/%Y') if t.scheduled_date else '—' }} {{ t.equipment.name if t.equipment else '—' }} {{ t.room.name if t.room else '—' }} {{ t.estimated_duration or 60 }} min
{% endif %}
{% endblock %}