{% for vehicle in data %}
{% endfor %}
{{vehicle.name}}
Logged Distance: | {{ vehicle.overall_distance | round(2) }} km |
---|---|
Logged Costs: | {{ vehicle.overall_costs | round(2) }} € |
{% for consumable in vehicle.consumables %}
{% endfor %}
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 |
{% if vehicle.odometers|length > 0 %}
{% else %}
{% for consumable in vehicle.consumables %}
not enough data: log a pitstop?
{% endif %}
{% if consumable.average_amount|length > 0 %}
{% else %}
{% endfor %}
not enough data: log a pitstop?
{% endif %}