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.
32 lines
901 B
32 lines
901 B
{% extends "base.html" %}
|
|
{% load common_tags %}
|
|
{% block base_content %}
|
|
<fieldset>
|
|
<h1>Lista de Mandatos sem Data Inicial</h1>
|
|
<br/>
|
|
{% 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.parlamentares:mandato_detail' mandato.pk %}">{{ mandato.parlamentar }}</a>
|
|
</td>
|
|
<td>{{ mandato.legislatura }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endif %}
|
|
</fieldset>
|
|
{% include 'paginacao.html' %}
|
|
<br/>
|
|
{% endblock base_content %}
|