{% with next_date=plan.get_next_maintenance_date %}
{% if next_date %}
{{ next_date|date:"d/m/Y" }}
{% if plan.is_overdue %}
{% trans "Overdue" %}
{% elif plan.days_until_due and plan.days_until_due <= 7 %}
{% trans "Due Soon" %}
{% endif %}
{% else %}
-
{% endif %}
{% endwith %}
{% if plan.is_active %}
{% trans "Active" %}
{% else %}
{% trans "Inactive" %}
{% endif %}
{% if plan.is_overdue or plan.days_until_due and plan.days_until_due <= 7 %}
{% endif %}
{% endfor %}
{% else %}
{% trans "No maintenance plans configured for this device." %}
{% if perms.netbox_maintenance_device.add_maintenanceplan %}
{% trans "Add Plan" %}
{% endif %}
{% trans "No maintenance executions recorded for this device." %}
{% if perms.netbox_maintenance_device.add_maintenanceexecution %}
{% trans "Add Execution" %}
{% endif %}