{% extends "base.html" %}
{% block title %}Tâche planifiée #{{ task.id }} — GMAO Collège{% endblock %}
{% block content %}
{% if task.lot_task %}
{{ task.lot_task.tache }}
{% else %}
Tâche #{{ task.id }}
{% endif %}
| Numéro |
{{ task.lot_task.num_tache if task.lot_task else '—' }} |
| Description |
{{ task.lot_task.tache if task.lot_task else '—' }} |
| Périodicité |
{{ task.lot_task.periodicite if task.lot_task else '—' }} |
| Date planifiée |
{% if task.scheduled_date %}
{{ task.scheduled_date.strftime('%d/%m/%Y') }}
{% else %}
Non planifiée
{% endif %}
|
| Statut |
{% if task.status == 'planned' %}
Planifiée
{% elif task.status == 'completed' %}
Terminée
{% elif task.status == 'postponed' %}
Reportée
{% else %}
{{ task.status }}
{% endif %}
|
{% if task.equipment %}
{% endif %}
{% endblock %}