{% load humanize %} {% with equipment=booking.equipment %}
{% if equipment.image %} {% with placeholder_url=STATIC_URL|add:'images/placeholder.jpg' %} {{ equipment.name }} {% endwith %} {% else %}
{% endif %}
{{ booking.get_status_display }}
{{ booking.start_date|date:"M j" }} - {{ booking.end_date|date:"M j, Y" }}
{{ booking.total_days }} day{{ booking.total_days|pluralize }} {% if booking.pickup_time %} • {{ booking.pickup_time|time:"g:i A" }} {% endif %}

{{ equipment.name }}

{{ equipment.category }} {{ booking.booking_number }}

Total Amount
KSh {{ booking.total_amount|intcomma }}
{% if booking.payment_status %} {{ booking.get_payment_status_display }} {% endif %}
Pickup Location
{{ booking.pickup_location|default:equipment.location|default:"Not specified" }}
{% if booking.delivery_required %} Delivery Included {% endif %}
Booked on {{ booking.created_at|date:"M j, Y" }}
View {% if booking.status == 'pending' %} Cancel {% endif %} {% if booking.status == 'confirmed' and not booking.is_past %} Modify {% endif %}
{% if booking.status == 'in_progress' %}
{{ booking.progress_percentage|default:0 }}% complete
{% endif %}
{% endwith %}