{% extends "base.html" %} {% load i18n %} {% block base_content %} {# FIXME is this the best markup to use? #} {% for comissao in object_list %} {% endfor %}
{% trans 'Id' %} {% trans 'Nome' %} {% trans 'Sigla' %} {% trans 'Tipo' %}
{{ comissao.id }} {{ comissao.nome }} {{ comissao.sigla }} {{ comissao.tipo }}
{% if is_paginated %} {% endif %} {% endblock %}