{% extends 'generic/object.html' %} {% block content %}
| Device | {{ object.device }} |
| Name | {{ object.name }} |
| Description | {{ object.description|default:"—" }} |
| Maintenance Type | {{ object.get_maintenance_type_display }} |
| Frequency | {{ object.frequency_days }} days |
| Active | {% if object.is_active %}Yes{% else %}No{% endif %} |
| Next Due | {% with next_date=object.get_next_maintenance_date %} {% if next_date %} {{ next_date|date:"Y-m-d" }} {% if object.is_overdue %} Overdue {% elif object.days_until_due <= 7 %} Due Soon {% endif %} {% else %} No executions yet {% endif %} {% endwith %} |
| Scheduled | Status | Technician |
|---|---|---|
| {{ execution.scheduled_date|date:"Y-m-d H:i" }} | {{ execution.get_status_display }} | {{ execution.technician|default:"—" }} |
View all {{ object.executions.count }} executions →
{% endif %} {% else %}No executions recorded yet.
{% endif %}