{% extends 'generic/object.html' %} {% block content %}
Maintenance Plan Details
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 %}
Recent Executions
{% if object.executions.all %} {% for execution in object.executions.all|slice:":5" %} {% endfor %}
Scheduled Status Technician
{{ execution.scheduled_date|date:"Y-m-d H:i" }} {{ execution.get_status_display }} {{ execution.technician|default:"—" }}
{% if object.executions.count > 5 %}

View all {{ object.executions.count }} executions →

{% endif %} {% else %}

No executions recorded yet.

{% endif %}
{% endblock %}