Sistema de Apoio ao Processo Legislativo
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.
 
 
 
 
 

28 lines
747 B

{% extends "base.html" %}
{% load i18n %}
{% block title %}SAPL{% endblock %}
{% block base_content %}
<p>Sessão Plenária</p>
<a href="{% url 'sessao_create' %}" class="btn btn-default">Incluir Sessão</a>
<hr/>
<table class="table table-hover">
<thead>
<tr>
<th>{% trans 'Sessão Legislativa' %}</th>
<th>{% trans 'Legislatura' %}</th>
<th>{% trans 'Tipo' %}</th>
</tr>
</thead>
<tbody>
{% for sessao in object_list %}
<td>{{ sessao.sessao_legislativa }}</td>
<td>{{ sessao.legislatura }}</td>
<td>{{ sessao.tipo }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}