{% set fieldNames = wpdf.columns %}
{% if table_noschema != 'true' %}
Schema
Field types:
{% for colname, coltype in wpdf.dtypes.iteritems() %}
{{colname}}:
{{coltype}}
{% endfor %}
{% endif %}
{% if table_noschema != 'true' %}
{{this.options.get("title","")}} Table
{% endif %}
{% if table_nosearch != 'true' %}
{% endif %}
{% if table_nocount != 'true' %}
Showing {{wpdf.index|length}} of {{wpdf.index|length}} rows
{% endif %}
{% for field in fieldNames %}
{{field | decodeUTF8 }}
{% endfor %}
{% for field in fieldNames %}
{{field | decodeUTF8 }}
{% endfor %}
{% for rowindex, row in wpdf.iterrows() %}
{% for field in fieldNames %}
{{row[field]}}
{% endfor %}
{% endfor %}