{% load tz %}
Status History
{{ booking.status_logs.count }} update{{ booking.status_logs.count|pluralize }}
{% if booking.status_logs.exists %}
{% for log in booking.status_logs.all %}
{{ log.new_status|slice:":1"|upper }}
{{ log.get_new_status_display }} {% if log.old_status %} {{ log.get_old_status_display }} {% endif %}
{{ log.timestamp|timesince }} ago
{{ log.changed_by.get_full_name|default:log.changed_by.email }}
{% if log.notes %}
{{ log.notes|linebreaksbr }}
{% endif %}
{% endfor %}
{% else %}
No status history yet

This booking was created on {{ booking.created_at|date:"M j, Y" }}. Status updates will appear here.

{% endif %}
{% if booking.notes %} {% endif %}
{% block extra_js %} {% endblock %}