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