{% extends 'base/base.html' %} {% load static humanize %} {% block title %}Booking #{{ booking.booking_number }} - PRACA{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{{ booking.get_status_display }} Booked on {{ booking.created_at|date:"F j, Y" }} {{ booking.get_booking_type_display }}
{{ log.timestamp|date:"F j, Y \a\t g:i A" }}
{% if log.notes %}{{ log.notes }}
{% endif %}{% if item.equipment %} {{ item.equipment.category }} {% if item.equipment.brand %} • {{ item.equipment.brand }} {% endif %} {% elif item.service %} {{ item.service.category }} {% endif %}
{% if item.notes %}{{ item.notes|truncatechars:60 }}
{% endif %}Start: {{ booking.start_date|date:"F j, Y" }} at {{ booking.pickup_time|time:"g:i A" }}
End: {{ booking.end_date|date:"F j, Y" }} at {{ booking.return_time|time:"g:i A" }}
({{ booking.total_days }} day{{ booking.total_days|pluralize }} total)
Address: {{ booking.delivery_address }}
{% if booking.delivery_fee > 0 %}Delivery Fee: KSh {{ booking.delivery_fee|floatformat:2|intcomma }}
{% endif %}{{ booking.equipment.category }}
{{ booking.start_date|date:"l, F j, Y" }}
{% if booking.pickup_time %}{{ booking.pickup_time|time:"g:i A" }}
{% endif %}{{ booking.end_date|date:"l, F j, Y" }}
{% if booking.return_time %}{{ booking.return_time|time:"g:i A" }}
{% endif %}{{ booking.special_requests }}
{{ booking.user.get_full_name|default:"N/A" }}
{{ booking.customer_email }}
{{ booking.customer_phone|default:"N/A" }}
{{ booking.user.profile.company }}
If you have any questions about your booking, please contact our support team.