mirror of https://github.com/interlegis/sapl.git
Browse Source
* Revert "Alterando estilo do botao de pesquisar parlamentares (#2573)" This reverts commitpull/2513/head4fbe8a62d5
. * Revert "HOT-FIX - remoçao de block.super desnecessario" This reverts commit3223f35160
. * Revert "Fix #2536 - Separa criação de mandato e parlamentar (#2551)" This reverts commit0c7c17de65
. * Altera localização de pesquisar parlamentar
Vinícius Cantuária
6 years ago
committed by
Edward
8 changed files with 36 additions and 73 deletions
@ -1,43 +0,0 @@ |
|||
{% 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