mirror of https://github.com/interlegis/sapl.git
Browse Source
* Adicionar endpoint pesquisa Adiciona view de pesquisa Adiciona novas entradas no menu tabela aux Adiciona form pesquisa Adiciona template pesquisa e resultados Adiciona template assunto norma detail Atualiza url sucesso delete assunto norma * Conserta chamada multifilter Co-authored-by: Vinícius Cantuária <cantuariavc@gmail.com> Co-authored-by: eribeiro <edwardr@senado.leg.br>pull/3284/head
João Rodrigues
4 years ago
committed by
GitHub
6 changed files with 200 additions and 8 deletions
@ -0,0 +1,34 @@ |
|||||
|
{% 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.norma:pesquisar_assuntonorma' %}" |
||||
|
class="btn btn-outline-primary" |
||||
|
> |
||||
|
Pesquisar Assunto de Norma Jurídica |
||||
|
</a> |
||||
|
<a |
||||
|
href="{% url 'sapl.norma:assuntonorma_create' %}" |
||||
|
class="btn btn-outline-primary" |
||||
|
> |
||||
|
Adicionar Assunto de Norma Jurídica |
||||
|
</a> |
||||
|
</div> |
||||
|
<div class="actions btn-group btn-group-sm float-right" role="group"> |
||||
|
<a |
||||
|
href="{% url 'sapl.norma:assuntonorma_update' object.pk %}" |
||||
|
class="btn btn-outline-primary" |
||||
|
> |
||||
|
Editar |
||||
|
</a> |
||||
|
<a |
||||
|
href="{% url 'sapl.norma:assuntonorma_delete' object.pk %}" |
||||
|
class="btn btn-outline-danger" |
||||
|
> |
||||
|
Excluir |
||||
|
</a> |
||||
|
</div> |
||||
|
{% endblock actions %} |
@ -0,0 +1,54 @@ |
|||||
|
{% 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.norma:pesquisar_assuntonorma' %}" |
||||
|
class="btn btn-outline-primary" |
||||
|
> |
||||
|
{% trans "Fazer nova pesquisa" %} |
||||
|
</a> |
||||
|
{% if not request.user.is_anonymous %} |
||||
|
<a |
||||
|
href="{% url 'sapl.norma:assuntonorma_create' %}" |
||||
|
class="btn btn-outline-primary" |
||||
|
> |
||||
|
Cadastrar Assunto de Norma Jurídica |
||||
|
</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>Assunto</th><th>Descrição</th></tr></thead> |
||||
|
<tbody> |
||||
|
{% for assunto_norma in page_obj %} |
||||
|
<tr> |
||||
|
<td> |
||||
|
<a href="{% url 'sapl.norma:assuntonorma_detail' assunto_norma.pk %}"> |
||||
|
{{ assunto_norma.assunto }} |
||||
|
</a> |
||||
|
</td> |
||||
|
<td>{{ assunto_norma.descricao }}</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