{% extends "layout.html" %} {% block body %}
{% for vehicle in data %}

{{vehicle.name}}

Logged Distance: {{ vehicle.overall_distance | round(2) }} km
Logged Costs: {{ vehicle.overall_costs | round(2) }} €
{% for consumable in vehicle.consumables %}
Average Distance: {{ consumable.average_distance | round(2) }} km
Amount fuelled: {{ consumable.amount | round(2) }} {{ consumable.unit }}
Average Amount fuelled: {{ consumable.average_amount_fuelled | round(2) }} {{ consumable.unit }}
Average Amount used: {{ consumable.average_amount_used | round(2) }} {{ consumable.unit }}/100km
{% endfor %}
{% if vehicle.odometers|length > 0 %}
{% else %} {% endif %}
{% for consumable in vehicle.consumables %}
{% if consumable.average_amount|length > 0 %}
{% else %} {% endif %}
{% endfor %}
{% endfor %}
{% endblock %}