mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
762 B
30 lines
762 B
{% extends "base.html" %}
|
|
{% load i18n bootstrap3 %}
|
|
|
|
{% block title %}SAPL{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="content-main">
|
|
<p>Comissões</p>
|
|
<a href="/admin/comissoes/comissao/add/">Incluir Comissão</a>
|
|
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>{% trans 'Nome' %}</th>
|
|
<th>{% trans 'Sigla' %}</th>
|
|
<th>{% trans 'Tipo' %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for comissao in object_list %}
|
|
<td>{{ comissao.nome }}</td>
|
|
<td>{{ comissao.sigla }}</td>
|
|
<td>{{ comissao.tipo }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|