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

{{ page_title }}

{% endif %} {% if timestamp_data %} {% for point in timestamp_data %} {{ point['time']}}

{% if data %} Repeat {% endif %}
{% endfor %} {% else %}

{% if data %} Repeat {% endif %}
{% 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 %}