{{ table.title }}
{% for level in columns: %}
{% for col, multiplier in level: %}
{{ col }}
|
{% endfor %}
{% endfor %}
{% for (indices, row), (_, styles) in table.model.iterrows(): %}
{% if index_styling%}
{% if indices is iterable %}
{% for index in indices %}
{{index}}
|
{% endfor %}
{% else %}
{{indices}}
|
{% endif%}
{% endif %}
{% for i in range(0, row|length): %}
{{ row[i] }}
|
{% endfor %}
{% endfor %}