{% extends "data_exports/base.html" %} {% load i18n getter_tags %} {% block body %}

{{ export }}

{% if export.column_set.exists %} {% for column in export.column_set.all %} {% endfor %} {% for obj in data %} {% for column in export.column_set.all %} {% endfor %} {% endfor %}
{% if column.label %}{{ column.label }}{% else %}{{ column }}{% endif %}
{{ obj|getattribute:column.column|nice_display }}
{% else %} {% trans "No columns where defined for this export, so there's no data to display" %} {% endif %} {% endblock body %}