{% extends "crud/list.html" %} {% load i18n %} {% block buttons %}{% endblock buttons %} {% block content %} {% if not rows %}

{{ NO_ENTRIES_MSG }}

{% else %} {% for name in headers %} {% endfor %} {% for value_list in rows %} {% for value, href in value_list %} {% endfor %} {% endfor %}
{{ name }}
{% if href %} {{ value }} {% else %} {{ value|safe }} {% endif %}
{% endif %} {% include "paginacao.html" %} {% endblock content %}