mirror of https://github.com/interlegis/sapl.git
Eduardo Edson Batista Cordeiro Alves
9 years ago
6 changed files with 121 additions and 6 deletions
@ -0,0 +1,37 @@ |
|||||
|
{% 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="" id="incluir-parlamentar" class="button secondary">{% trans 'Mandatos' %}</a></dd> |
||||
|
<dd><a href="" 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>Filiações</legend> |
||||
|
|
||||
|
<table> |
||||
|
<tr> |
||||
|
<th><strong>Partido</strong></th> |
||||
|
<th><strong>Data Filiação</strong></th> |
||||
|
<th><strong>Data Desfiliação</strong></th> |
||||
|
</tr> |
||||
|
{% for f in filiacoes %} |
||||
|
<tr> |
||||
|
<td><a href="">{{f.partido.sigla}}</a></td> |
||||
|
<td>{{f.data}}</td> |
||||
|
<td>{{f.data_desfiliacao}}</td> |
||||
|
</tr> |
||||
|
{% endfor %} |
||||
|
</table> |
||||
|
</fieldset> |
||||
|
|
||||
|
{% crispy form %} |
||||
|
|
||||
|
{% endblock detail_content %} |
Loading…
Reference in new issue