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

{{table_name}}

  • home
  • add alim
  • consumption details

  • Long Term

    start: {{long_term_consumption['start']}} end: {{long_term_consumption['end']}}

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

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

    average: {{long_term_consumption['average']}}


    tabel_alimentari

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

    tabel_totals

    {% for colName in tabel_totals[0] %} {% endfor %} {% if tabel_totals is not none %} {% for row in tabel_totals[1:] %} {% for col in row %} {% endfor %} {% endfor %} {% else %} {% endif %}
    {{colName}}
    {{col}}


    last_records

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

    {% endblock %}