{% include './admin_header.html' %}
Generated Spot Challan Detail
Start Date
End Date
Show
#
Challan No
Challan Date
Vehicle No
Vehicle Owner
Mobile No
Violation Type
View Violation Images
Total Fine
Payment Type
Is Paid
{% for i in data %}
{{ i.id }}
{{ i.challan_date }}
{{ i.vehicle_no }}
{{ i.vehicle_owner }}
{{ i.mobile_no }}
{{ i.violation_type }}
{{ i.total_fine }}
{{ i.payment_type }}
{% if i.Is_paid =="PAID" %}
{{ i.Is_paid }}
{% else %}
{{ i.Is_paid }}
{% endif %}
{% endfor %}
{% include './admin_footer.html' %}