{% extends "base.html" %} {% load i18n %} {% block base_content %} {# FIXME is this the best markup to use? #}
{% block actions %}
{% trans 'Editar' %} {% trans 'Excluir' %}
{% endblock actions %}
{% block detail_content %} {% for fieldset in view.layout_display %}

{{ fieldset.legend }}

{% for row in fieldset.rows %}
{% for column in row %}

{{ column.verbose_name }}

{{ column.text }}

{% endfor %}
{% endfor %} {% endfor %} {% endblock detail_content %} {% endblock base_content %}