{% load report_tags %} {% for row in data %} {% for col in row %} {% endfor %} {% endfor %}
{% if col != None %} {% with pricision=columns|col_precision:forloop.counter0 %} {% if columns|col_type:forloop.counter0 == 'date' %} {{col|date:"d-m-Y"}} {% elif columns|col_type:forloop.counter0 == 'number' %} {{col|floatformat:pricision}} {% else %} {{col}} {% endif %} {% endwith %} {% endif %}