{% extends "layout.html" %} {% block body %}

{% if data %} Repeat {% endif %}

Last Mileage {% for point in data %} {% if point['fuel'] %} {% endif %} {% endfor %}
Odometer Time Oil Litres $/Litre $ Total
{{ point['odometer'] }} {{ point['time'] }} {{ point['oilhealth'] }} {{ point['fuel'] }} {{ point['fuelcost'] }}{{ '%0.2f' % ((point['fuel'] | float) * (point['fuelcost'] | float)) }}
{% endblock %}