{% extends "base.html" %} {% load static %} {% block title %}Tag Management{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{% for booking in bookings %} {% endfor %}
Booking ID Customer Name Total Quantity Actions
{{ booking.booking_id|default:'-' }} {{ booking.user.first_name }} {{ booking.user.last_name }}
{{ booking.contact_mobile }}
{{ booking.total_quantity }}
{% endblock %} {% block extra_js %} {% endblock %}