{% extends "base.html" %} {% load humanize %} {% load customfilter %} {% block pageContent %}

{{page_title}}


{% for sale in sales %} {% endfor %}
# Date Customer Petrol Volume Amount Action
{{forloop.counter}} {{ sale.date|date:"M d, Y" }} {{sale.customer_name}} {{sale.petrol}} {{ sale.volume|floatformat:2|intcomma }} L {{ sale.amount|floatformat:2|intcomma }}
{% endblock pageContent %} {% block ScriptBlock %} {% endblock ScriptBlock %}