{% extends 'base.html' %}
{% block content %}
{{table_name}}
add alim
consumption details
tabel_alimentari
{% for colName in tabel_alimentari[0] %}
| {{colName}} |
{% endfor %}
{% for row in tabel_alimentari[1:] %}
{% for col in row %}
| {{col}} |
{% endfor %}
{% endfor %}
tabel_totals
{% for colName in tabel_totals[0] %}
| {{colName}} |
{% endfor %}
{% if tabel_totals is not none %}
{% for row in tabel_totals[1:] %}
{% for col in row %}
| {{col}} |
{% endfor %}
{% endfor %}
{% else %}
{% endif %}
last_records
{% for colName in last_records[0] %}
| {{colName}} |
{% endfor %}
{% for row in last_records[1:] %}
{% for col in row %}
| {{col}} |
{% endfor %}
{% endfor %}
{% endblock %}