Browse Source

Show ids on comissoes list (temporary)

pull/6/head
Marcio Mazza 10 years ago
parent
commit
de337760e4
  1. 3
      templates/comissoes/comissao_list.html

3
templates/comissoes/comissao_list.html

@ -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 %}

Loading…
Cancel
Save