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.
48 lines
1.6 KiB
48 lines
1.6 KiB
{% extends "crud/detail.html" %}
|
|
{% load i18n %}
|
|
{% load crispy_forms_tags %}
|
|
{% block actions %}
|
|
<dl class="sub-nav left">
|
|
|
|
<dd><a href="{% url 'parlamentares_editar' legislatura_id parlamentar.id %}" id="incluir-parlamentar" class="button secondary">{% trans 'Inicio' %}</a></dd>
|
|
|
|
<dd><a href="{% url 'parlamentares_mandato' parlamentar.id %}" id="incluir-parlamentar" class="button secondary">{% trans 'Mandatos' %}</a></dd>
|
|
|
|
<dd><a href="{% url 'parlamentares_filiacao' parlamentar.id %}" id="incluir-parlamentar" class="button secondary">{% trans 'Filiações Partidárias' %}</a></dd>
|
|
|
|
<dd><a href="{% url 'parlamentares_dependentes' parlamentar.id %}" id="incluir-parlamentar" class="button secondary">{% trans 'Dependentes' %}</a></dd>
|
|
|
|
</dl>
|
|
{% endblock %}
|
|
{% block detail_content %}
|
|
|
|
<strong>Parlamentar: </strong>{{ parlamentar.nome_parlamentar }}
|
|
|
|
<fieldset>
|
|
<legend>Mandatos</legend>
|
|
|
|
<table>
|
|
<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>
|
|
{% for m in mandatos %}
|
|
<tr>
|
|
<td><a href="{% url 'parlamentares_mandato_edit' parlamentar.id m.id %}">{{m.legislatura}}</a></td>
|
|
<td>{{m.coligacao}}</td>
|
|
<td>{{m.data_fim_mandato}}</td>
|
|
<td>{{m.data_expedicao_diploma}}</td>
|
|
<td>{{m.votos_recebidos}}</td>
|
|
<td>{{m.observacao}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</fieldset>
|
|
|
|
{% crispy form %}
|
|
|
|
{% endblock detail_content %}
|
|
|