mirror of https://github.com/interlegis/sapl.git
Vinícius Cantuária
6 years ago
committed by
Edward
4 changed files with 63 additions and 0 deletions
@ -0,0 +1,9 @@ |
|||
{% extends "crud/detail.html" %} |
|||
{% load i18n %} |
|||
{% load crispy_forms_tags cropping %} |
|||
{% block actions %} |
|||
{{ block.super }} |
|||
<div class="actions btn-group btn-group-sm" role="group"> |
|||
<a href="{% url 'sapl.parlamentares:parlamentares_filiados' object.pk %}" class="btn btn-outline-primary">Listar Parlamentares Filiados</a> |
|||
</div> |
|||
{% endblock actions %} |
@ -0,0 +1,42 @@ |
|||
{% extends "crud/detail.html" %} |
|||
{% load i18n %} |
|||
{% load crispy_forms_tags cropping %} |
|||
{% block base_content %} |
|||
<h1>{{ partido.sigla }} - {{ partido.nome }}</h1> |
|||
<div class="actions btn-group btn-group-sm" role="group"> |
|||
<a href="{% url 'sapl.parlamentares:partido_detail' partido.pk %}" class="btn btn-outline-primary">Informações do Partido</a> |
|||
</div> |
|||
<h2 class="legend">Parlamentares Filiados</h2> |
|||
<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> |
|||
</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:parlamentar_detail' parlamentar.pk %}"> {{ parlamentar }} </a> |
|||
</td> |
|||
</tr> |
|||
{% endfor %} |
|||
</tbody> |
|||
</table> |
|||
</div> |
|||
{% endblock base_content %} |
|||
|
Loading…
Reference in new issue