{% extends "base.html" %} {% load static %} {% block title %}Back to Base{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% for item in page_obj %} {% empty %} {% endfor %}
Booking ID Customer Rider POC Name POC Mobile Reason Date Added Actions
{{ item.booking.booking_id }} {{ item.customer.first_name }} {{ item.customer.last_name }}
{{ item.customer.mobile }}
{% if item.rider %} {{ item.rider.full_name }} {% else %} Unassigned {% endif %} {{ item.poc_name|default:"-" }} {{ item.poc_mobile|default:"-" }} {{ item.reason|default:"-"|truncatechars:30 }} {{ item.created_at|date:"d M Y H:i" }}
Edit {% if not item.is_resolved %}
{% csrf_token %}
{% endif %}
No entries found.
{% if page_obj.has_other_pages %} {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}