|
@ -13,6 +13,7 @@ |
|
|
<table class="table table-hover"> |
|
|
<table class="table table-hover"> |
|
|
<thead> |
|
|
<thead> |
|
|
<tr> |
|
|
<tr> |
|
|
|
|
|
<th>{% trans 'Id' %}</th> |
|
|
<th>{% trans 'Nome' %}</th> |
|
|
<th>{% trans 'Nome' %}</th> |
|
|
<th>{% trans 'Sigla' %}</th> |
|
|
<th>{% trans 'Sigla' %}</th> |
|
|
<th>{% trans 'Tipo' %}</th> |
|
|
<th>{% trans 'Tipo' %}</th> |
|
@ -20,6 +21,7 @@ |
|
|
</thead> |
|
|
</thead> |
|
|
<tbody> |
|
|
<tbody> |
|
|
{% for comissao in object_list %} |
|
|
{% for comissao in object_list %} |
|
|
|
|
|
<td>{{ comissao.id }}</td> |
|
|
<td>{{ comissao.nome }}</td> |
|
|
<td>{{ comissao.nome }}</td> |
|
|
<td>{{ comissao.sigla }}</td> |
|
|
<td>{{ comissao.sigla }}</td> |
|
|
<td>{{ comissao.tipo }}</td> |
|
|
<td>{{ comissao.tipo }}</td> |
|
@ -28,4 +30,3 @@ |
|
|
</tbody> |
|
|
</tbody> |
|
|
</table> |
|
|
</table> |
|
|
{% endblock %} |
|
|
{% endblock %} |
|
|
|
|
|
|
|
|