mirror of https://github.com/interlegis/sapl.git
Vinícius Cantuária
4 years ago
committed by
GitHub
6 changed files with 153 additions and 19 deletions
@ -0,0 +1,13 @@ |
|||||
|
{% extends "crud/detail.html" %} |
||||
|
{% load i18n %} |
||||
|
{% load crispy_forms_tags cropping %} |
||||
|
{% block actions %} |
||||
|
<div class="actions btn-group btn-group-sm" role="group"> |
||||
|
<a href="{% url 'sapl.parlamentares:pesquisar_coligacao' %}" class="btn btn-outline-primary">Pesquisar Coligação</a> |
||||
|
<a href="{% url 'sapl.parlamentares:coligacao_create' %}" class="btn btn-outline-primary">Adicionar Coligação</a> |
||||
|
</div> |
||||
|
<div class="actions btn-group btn-group-sm float-right" role="group"> |
||||
|
<a href="{% url 'sapl.parlamentares:coligacao_update' object.pk %}" class="btn btn-outline-primary">Editar</a> |
||||
|
<a href="{% url 'sapl.parlamentares:coligacao_delete' object.pk %}" class="btn btn-outline-danger">Excluir</a> |
||||
|
</div> |
||||
|
{% endblock actions %} |
@ -0,0 +1,51 @@ |
|||||
|
{% extends "crud/list.html" %} |
||||
|
{% load i18n %} |
||||
|
{% load crispy_forms_tags staticfiles %} |
||||
|
|
||||
|
{% block base_content %} |
||||
|
{% if not show_results %} |
||||
|
{% crispy filter.form %} |
||||
|
{% else %} |
||||
|
<div class="actions btn-group float-right btn-group-sm" role="group"> |
||||
|
<a href="{% url 'sapl.parlamentares:pesquisar_coligacao' %}" class="btn btn-outline-primary">{% trans 'Fazer nova pesquisa' %}</a> |
||||
|
{% if not request.user.is_anonymous %} |
||||
|
<a href="{% url 'sapl.parlamentares:coligacao_create' %}"class="btn btn-outline-primary">Adicionar Coligação</a> |
||||
|
{% endif %} |
||||
|
</div> |
||||
|
<br> |
||||
|
{% if numero_res > 0 %} |
||||
|
{% if numero_res == 1 %} |
||||
|
<p>Foi encontrado {{ numero_res }} resultado.</p> |
||||
|
{% else %} |
||||
|
<p>Foram encontrados {{ numero_res }} resultados.</p> |
||||
|
{% endif %} |
||||
|
<table class="table table-striped table-hover"> |
||||
|
<thead> |
||||
|
<tr> |
||||
|
<th>Nome da Coligação</th> |
||||
|
<th>Legislatura</th> |
||||
|
<th>Número de Votos</th> |
||||
|
</tr> |
||||
|
</thead> |
||||
|
<tbody> |
||||
|
{% for coligacao in page_obj %} |
||||
|
<tr> |
||||
|
<td> |
||||
|
<a href="{% url 'sapl.parlamentares:coligacao_detail' coligacao.pk %}">{{coligacao.nome}}</a> |
||||
|
</td> |
||||
|
<td> |
||||
|
<a href="{% url 'sapl.parlamentares:legislatura_detail' coligacao.legislatura.pk %}">{{coligacao.legislatura}}</a> |
||||
|
</td> |
||||
|
<td>{% if coligacao.numero_votos %} {{ coligacao.numero_votos }} {% else %} - {% endif %}</td> |
||||
|
</tr> |
||||
|
{% endfor %} |
||||
|
</tbody> |
||||
|
</table> |
||||
|
{% else %} |
||||
|
<font size="4"><p align="center">{{ NO_ENTRIES_MSG }}</p></font> |
||||
|
{% endif %} |
||||
|
{% endif %} |
||||
|
<br/> |
||||
|
{% include 'paginacao.html'%} |
||||
|
<br /><br /><br /> |
||||
|
{% endblock base_content %} |
Loading…
Reference in new issue