{% extends "base.html" %} {% load i18n crispy_forms_tags %} {% block base_content %} {# FIXME is this the best markup to use? #} {# TODO replace fieldset for something semantically correct, but with similar visual grouping style #} {% for fieldset in view.fieldsets %}
{{ fieldset.legend }} {% for row in fieldset.rows %}
{% for column in row %}
{# TODO replace labels, probably (are they correct here?) #}

{{ column.text }}

{% endfor %}
{% endfor %}
{% endfor %} {% endblock %}