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.
39 lines
1.1 KiB
39 lines
1.1 KiB
9 years ago
|
{% extends "parlamentares/parlamentar_detail.html" %}
|
||
9 years ago
|
{% load i18n %}
|
||
|
{% load crispy_forms_tags %}
|
||
9 years ago
|
{% block actions %}{% endblock %}
|
||
9 years ago
|
{% block detail_content %}
|
||
9 years ago
|
|
||
9 years ago
|
<h2><strong>Parlamentar: </strong>{{ object.nome_parlamentar }}</h2>
|
||
9 years ago
|
|
||
9 years ago
|
<fieldset>
|
||
|
<legend>Mandatos</legend>
|
||
9 years ago
|
|
||
9 years ago
|
<table class="table table-striped table-bordered">
|
||
|
<thead class="thead-default">
|
||
|
<tr>
|
||
|
<th><strong>Legislatura</strong></th>
|
||
|
<th><strong>Coligação</strong></th>
|
||
|
<th><strong>Fim Mandato</strong></th>
|
||
|
<th><strong>Exp. Diploma</strong></th>
|
||
|
<th><strong>Nº Votos</strong></th>
|
||
|
<th><strong>Observação</strong></th>
|
||
|
</tr>
|
||
|
</thead>
|
||
9 years ago
|
{% for m in mandatos %}
|
||
|
<tr>
|
||
9 years ago
|
<td><a href="{% url 'parlamentares:parlamentar_mandato_edit' object.id m.id %}">{{m.legislatura}}</a></td>
|
||
9 years ago
|
<td>{{m.coligacao|default_if_none:""}}</td>
|
||
|
<td>{{m.data_fim_mandato|default_if_none:""}}</td>
|
||
|
<td>{{m.data_expedicao_diploma|default_if_none:""}}</td>
|
||
|
<td>{{m.votos_recebidos|default_if_none:""}}</td>
|
||
|
<td>{{m.observacao|default_if_none:""}}</td>
|
||
9 years ago
|
</tr>
|
||
|
{% endfor %}
|
||
9 years ago
|
</table>
|
||
|
</fieldset>
|
||
9 years ago
|
|
||
9 years ago
|
{% crispy form %}
|
||
9 years ago
|
|
||
|
{% endblock detail_content %}
|