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

{{page_title}}


{% for petrol in petrols %} {% endfor %}
# Date Added Name Price Status Action
{{forloop.counter}} {{ petrol.date_created|date:"M d, Y H:i" }} {{petrol}} {{ petrol.price|floatformat:2|intcomma }}/L {% if petrol.status == '1' %} Active {% else %} Inactive {% endif %}
{% endblock pageContent %} {% block ScriptBlock %} {% endblock ScriptBlock %}