{% extends 'base.html' %} {% block content %}

{{ table_name }} — Fuel Summary

Home Add Fuel Entry Consumption Details

Long-term Fuel Consumption

Start: {{ long_term_consumption['start_fuel'] }}

End: {{ long_term_consumption['end_fuel'] }}

Total km: {{ long_term_consumption['km_fuel'] }}

Total liters: {{ long_term_consumption['liters_fuel'] }}

Average: {{ long_term_consumption['average_fuel'] }}

Long-term Electric Consumption

Start: {{ long_term_consumption['start_electric'] }}

End: {{ long_term_consumption['end_electric'] }}

Total km: {{ long_term_consumption['km_electric'] }}

Total kWh: {{ long_term_consumption['kWh_electric'] }}

Average: {{ long_term_consumption['average_electric'] }}

Fuel Records (tabel_alimentari)

{% for colName in tabel_alimentari[0] %} {% endfor %} {% for row in tabel_alimentari[1:] %} {% for col in row %} {% endfor %} {% endfor %}
{{ colName }}
{{ col }}

Totals (tabel_totals)

{% if tabel_totals %} {% for colName in tabel_totals[0] %} {% endfor %} {% for row in tabel_totals[1:] %} {% for col in row %} {% endfor %} {% endfor %}
{{ colName }}
{{ col }}
{% else %}
No totals available.
{% endif %}

Last Records

{% for colName in last_records[0] %} {% endfor %} {% for row in last_records[1:] %} {% for col in row %} {% endfor %} {% endfor %}
{{ colName }}
{{ col }}
{% endblock %}