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

{{ table_name }} — Costs Summary

Home Add Entry Details Consumption
Last data base update {{last_db_update}}

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 is not none and tabel_totals.size > 0 %} {% 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 %}