mirror of https://github.com/interlegis/sapl.git
Browse Source
Adiciona novas entradas no menu tabela aux Adiciona form pesquisa Adiciona template pesquisa e resultados Adiciona view pesquisa Altera template status tram detail Atualiza url sucesso delete status tram Co-authored-by: Vinícius Cantuária <cantuariavc@gmail.com>pull/3284/head
João Rodrigues
4 years ago
committed by
GitHub
6 changed files with 173 additions and 15 deletions
@ -0,0 +1,14 @@ |
|||
{% 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.materia:pesquisar_statustramitacao' %}" class="btn btn-outline-primary">Pesquisar Status de Tramitação</a> |
|||
<a href="{% url 'sapl.materia:statustramitacao_create' %}" class="btn btn-outline-primary">Adicionar Status de Tramitação</a> |
|||
</div> |
|||
<div class="actions btn-group btn-group-sm float-right" role="group"> |
|||
<a href="{% url 'sapl.materia:statustramitacao_update' object.pk %}" class="btn btn-outline-primary">Editar</a> |
|||
<a href="{% url 'sapl.materia:statustramitacao_delete' object.pk %}" class="btn btn-outline-danger">Excluir</a> |
|||
</div> |
|||
{% endblock actions %} |
@ -0,0 +1,41 @@ |
|||
{% 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.materia:pesquisar_statustramitacao' %}" class="btn btn-outline-primary">{% trans "Fazer nova pesquisa" %}</a> |
|||
{% if not request.user.is_anonymous %} |
|||
<a href="{% url 'sapl.materia:statustramitacao_create' %}" class="btn btn-outline-primary">Adicionar Status de Tramitaçã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>Sigla</th><th>Descricao</th><th>Indicador da Tramitacao</th></tr></thead> |
|||
<tbody> |
|||
{% for status in page_obj %} |
|||
<tr> |
|||
<td><a href="{% url 'sapl.materia:statustramitacao_detail' status.pk %}">{{ status.sigla }}</a></td> |
|||
<td>{{ status.descricao }}</td> |
|||
<td>{{ status.indicador }}</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