{% extends 'base.html' %} {% load static %} {% block title %} Payment History {% endblock %} {% block css %} {% endblock %} {% block content %}
{% include 'driver_header.html' %}
{% include 'driver_sidebar.html' %}
{% if paymenthistory_data %} {% for data in paymenthistory_data %} {% endfor %} {% endif %}
Serial No. Date No of Drops Working Hours Payment
{{data.serialno}} {{data.date}} {{data.no_of_drops}} {{data.total_hours}} {{data.total_price}}
{% include 'driver_footer.html' %}
{% endblock %} {% block js %} {% endblock %}