{% load static %} {% block title %}Drinks on Bus{% endblock %} {% block content %}
Back Home

Search Car Transactions

{% for car in cars_datalist %} {% endfor %} {% for region in regions_datalist %} {% endfor %}
{% if transactions %}

Results for: {{ query }}

{% for t in transactions %} {% if t.status == 'confirmed' %} {% if t.tripstatics %} {% else %} {% endif %} {% endif %} {% endfor %}
Trans No Car User Type Soda Water Safari Date Return Return Date Total Soda Total Water Grand Total
{{ forloop.counter }} {{ t.car_id }} {{ t.user.username }} {{ t.transaction_type }} {{ t.soda_amount }} {{ t.water_amount }}{{ t.tripstatics.start }} → {{ t.tripstatics.destination }} {{ t.tripstatics.trip_date }} {{ t.tripstatics.return_start }} → {{ t.tripstatics.return_destination }} {{ t.tripstatics.return_trip_date }}No trip assigned {{ t.soda_total }} TZS {{ t.water_total }} TZS {{ t.grand_total }} TZS
{% endif %}
{% endblock %}