mirror of https://github.com/interlegis/sapl.git
Browse Source
* Adiciona cadastro de parlamentar na tabelas auxiliares Co-authored-by: UlyssesBML <ulysses3353@gmail.com> * Remoção de mandato na criação do parlamentar Co-authored-by: UlyssesBML <ulysses3353@gmail.com> * Fix #2536 Co-authored-by: UlyssesBML <ulysses3353@gmail.com> * Corrige testes Co-authored-by: UlyssesBML <ulysses3353@gmail.com>pull/2573/head
Vinícius Cantuária
6 years ago
committed by
Edward
8 changed files with 67 additions and 34 deletions
@ -0,0 +1,43 @@ |
|||
{% extends "base.html" %} |
|||
{% load i18n %} |
|||
{% load crispy_forms_tags cropping%} |
|||
{% block base_content %} |
|||
<h1>Parlamentares</h1></br></br> |
|||
<div class="result-count">Total de Parlamentares: <strong>{{ parlamentares|length }}</strong></div> |
|||
<div class="container-table lista-parlamentares"> |
|||
<table class="table table-striped table-hover table-link-ordering"> |
|||
<thead> |
|||
<tr> |
|||
<th> |
|||
Foto |
|||
</th> |
|||
<th> |
|||
Parlamentar |
|||
</th> |
|||
<th> |
|||
Partido |
|||
</th> |
|||
</tr> |
|||
</thead> |
|||
<tbody> |
|||
{% for parlamentar in parlamentares %} |
|||
<tr> |
|||
<td> |
|||
{% if parlamentar.fotografia %} |
|||
<div id="w-100"> |
|||
<img class="img-fluid img-thumbnail" src="{% cropped_thumbnail parlamentar "cropping"%}"> |
|||
</div> |
|||
{% endif %} |
|||
</td> |
|||
<td> |
|||
<a href="{% url 'sapl.parlamentares:mandato_list' parlamentar.pk %}"> {{ parlamentar }} </a> |
|||
</td> |
|||
<td> |
|||
{{ parlamentar.filiacao_atual }} |
|||
</td> |
|||
</tr> |
|||
{% endfor %} |
|||
</tbody> |
|||
</table> |
|||
</div> |
|||
{% endblock base_content %} |
Loading…
Reference in new issue