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.
31 lines
1.0 KiB
31 lines
1.0 KiB
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
{% load tz %}
|
|
{% block base_content %}
|
|
<fieldset>
|
|
<h1>Lista de Mandatos sem Data Inicial</h1>
|
|
{% if not mandato_sem_data_inicio %}
|
|
<p>{{ NO_ENTRIES_MSG }}</p>
|
|
{% else %}
|
|
<table class="table table-striped table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>Parlamentar do Mandato</th>
|
|
<th>Legislatura do Mandato</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for mandato in mandato_sem_data_inicio %}
|
|
<tr>
|
|
<td>
|
|
<a href="{% url 'sapl_index' %}parlamentar/mandato/{{ mandato.pk }}">{{ mandato.parlamentar }}</a>
|
|
</td>
|
|
<td>{{ mandato.legislatura }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endif %}
|
|
</fieldset>
|
|
{% include 'paginacao.html'%}
|
|
{% endblock base_content %}
|