{% load horillafilters %}

Exported Data

{% for header in headers %} {% if forloop.counter != 1 %} {% endif %} {% endfor %} {% for row in rows %} {% for header in headers %} {% if forloop.counter != 1 %} {% endif %} {% endfor %} {% endfor %}
SN {{ header }}
{{ forloop.counter }} {% with cell=row|get_item:header %} {% if cell|length > 0 and not cell|stringformat:"s" == cell %}
    {% for item in cell %}
  • {{ item }}
  • {% endfor %}
{% else %} {{ cell }} {% endif %} {% endwith %}