mirror of https://github.com/interlegis/sapl.git
Browse Source
* Cria pesquisa de partido Adiciona link para criação de partido em tabelas auxiliares * Adiciona pesquisa multifield Co-authored-by: eribeiro <edwardr@senado.leg.br>pull/3307/head
Vinícius Cantuária
4 years ago
committed by
GitHub
6 changed files with 145 additions and 6 deletions
@ -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_partido' %}" class="btn btn-outline-primary">{% trans 'Fazer nova pesquisa' %}</a> |
|||
{% if not request.user.is_anonymous %} |
|||
<a href="{% url 'sapl.parlamentares:partido_create' %}"class="btn btn-outline-primary">Adicionar Partido</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>Sigla do Partido</th> |
|||
<th>Nome do Partido</th> |
|||
<th>Data de Criação</th> |
|||
<th>Data de Extinção</th> |
|||
</tr> |
|||
</thead> |
|||
<tbody> |
|||
{% for partido in page_obj %} |
|||
<tr> |
|||
<td>{{ partido.sigla }}</td> |
|||
<td> |
|||
<a href="{% url 'sapl.parlamentares:partido_detail' partido.pk %}">{{partido.nome}}</a> |
|||
</td> |
|||
<td>{% if partido.data_criacao %} {{ partido.data_criacao }} {% else %} - {% endif %}</td> |
|||
<td>{% if partido.data_extincao %} {{ partido.data_extincao }} {% 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