{% extends TICKETS_BASE_TEMPLATE %} {% load static %} {% block content %}

Ticket history

Track every change from creation to closure

{% if history %}
{% for entry in history %}
{{ entry.new_status|title }}
{{ entry.created_at|date:"M d, Y h:i A" }}
{{ entry.changed_by.first_name }} {{ entry.changed_by.last_name }}
({{ entry.changed_by.phone_mobile|default:"-" }})
Previous: {{ entry.old_status|default:"N/A" }}
{% endfor %}
{% else %}
No history available yet.
{% endif %}
{% endblock %}