{% extends 'base.html' %} {% block title %}Maintenance – IT Asset Management{% endblock %} {% block breadcrumb %} {% endblock %} {% block extra_head %} {% endblock %} {% block content %}
Clear
{% if current_user.is_editor %}{% endif %} {% for r in pagination.items %} {% if current_user.is_editor %} {% endif %} {% else %} {% endfor %}
Asset Start Date End Date Status Initial Diagnosis Action Taken Result
{{ r.asset.serial_number }} {% if r.asset.brand %}
{{ r.asset.brand }} {{ r.asset.model or '' }}{% endif %}
{{ r.start_date.strftime('%d/%m/%Y') if r.start_date else '—' }} {{ r.end_date.strftime('%d/%m/%Y') if r.end_date else '—' }} {% for val, label in statuses %}{% if val == r.status %}{{ label }}{% endif %}{% endfor %} {{ (r.initial_diagnosis or '—')[:60] }}{% if r.initial_diagnosis and r.initial_diagnosis|length > 60 %}…{% endif %} {{ (r.action_taken or '—')[:60] }}{% if r.action_taken and r.action_taken|length > 60 %}…{% endif %} {{ (r.action_result or '—')[:60] }}{% if r.action_result and r.action_result|length > 60 %}…{% endif %}
No maintenance records found.
{% if pagination.pages > 1 %} {% endif %}
{% if current_user.is_editor %} {% endif %} {% endblock %} {% block extra_js %} {% if current_user.is_editor %} {% endif %} {% endblock %}