mirror of https://github.com/interlegis/sapl.git
Browse Source
* Refatora a Pesquisa de Documento Adm * Finaliza a refatoracao da pesquisa por documento administrativo * Cria o botao de pesquisa por Documento Administrativo * Faz ir para o menu principal quando clica na logoda aplicacao * Arruma PEP8 * Arruma alguns detalhes * Faz modificacoes propostas pela issue 418 fix #418pull/445/head
eduardocalil
9 years ago
committed by
Edward
9 changed files with 197 additions and 128 deletions
@ -0,0 +1,48 @@ |
|||
{% extends "crud/detail.html" %} |
|||
{% load i18n %} |
|||
{% load crispy_forms_tags %} |
|||
{% block actions %}{% endblock %} |
|||
|
|||
{% block sections_nav %} {% endblock %} |
|||
|
|||
{% block detail_content %} |
|||
<h1><b>Pesquisar Documento Administrativo</b></h1> |
|||
<br></br> |
|||
|
|||
|
|||
{% crispy filter.form %} |
|||
{% if filter_url %} |
|||
<p></p> |
|||
<table class="table table-striped table-bordered"> |
|||
<thead class="thead-default"> |
|||
<tr><td><h3>Resultados</h3></td></tr> |
|||
</thead> |
|||
{% if page_obj|length %} |
|||
{% if numero_res > 1 %} |
|||
<h3>Pesquisa concluída com sucesso! Foram encontrados {{numero_res}} documentos.</h3> |
|||
{% elif numero_res == 1 %} |
|||
<h3>Pesquisa concluída com sucesso! Foi encontrado {{numero_res}} documento.</h3> |
|||
{% endif %} |
|||
|
|||
{% for d in page_obj %} |
|||
|
|||
<tr> |
|||
<td> |
|||
<strong><a href="{% url 'protocoloadm:documentoadministrativo_detail' d.id %}">{{d.tipo.sigla}} {{d.numero}}/{{d.ano}} - {{d.tipo}}</strong></a></br> |
|||
{{ d.assunto|safe }}</br> |
|||
<p></p> |
|||
</tr> |
|||
{% endfor %} |
|||
{% else %} |
|||
<tr> |
|||
<td> |
|||
<h3>Nenhum documento encontrado com essas especificações</h3> |
|||
</tr> |
|||
{% endif %} |
|||
|
|||
</table> |
|||
|
|||
{% include "paginacao.html" %} |
|||
{% endif %} |
|||
|
|||
{% endblock detail_content %} |
@ -1,66 +0,0 @@ |
|||
{% extends "protocoloadm/pesquisa_documento_detail.html" %} |
|||
{% load i18n %} |
|||
{% load crispy_forms_tags %} |
|||
|
|||
{% block detail_content %} |
|||
<fieldset> |
|||
<legend>Pesquisa Básica</legend> |
|||
{% if documentos %} |
|||
Total: {{ documentos|length }} |
|||
|
|||
<table> |
|||
{% for d in documentos %} |
|||
<tr> |
|||
<td> |
|||
<a href="{% url 'protocoloadm:detail_doc_adm' d.id %}"><b>{{ d.tipo.sigla }} {{ d.numero }}/{{ d.ano }} - {{ d.tipo }}</b></a> <br /> |
|||
{{ d.assunto }} <br /> |
|||
<b>Interessado:</b> {{ d.interessado }} |
|||
</td> |
|||
</tr> |
|||
{% endfor %} |
|||
</table> |
|||
{% else %} |
|||
<form method="POST"> |
|||
{% csrf_token %} |
|||
|
|||
{% if error %} |
|||
<h5 align="center"><font color="#FF0000">{{ error }}</font></h5> |
|||
{% endif %} |
|||
|
|||
Tipo Documento: |
|||
<select name="tipo_documento"> |
|||
<option value=""> --- </option> |
|||
{% for tipo in tipos_doc %} |
|||
<option value="{{tipo.id}}">{{tipo.descricao}}</option> |
|||
{% endfor %} |
|||
</select> <br> |
|||
Número: <input type="text" name="numero" id="numero" /> <br> |
|||
Ano: <input type="text" name="ano" id="ano" /> <br> |
|||
Núm. Protocolo: <input type="text" name="numero_protocolo" id="numero_protocolo" /> <br> |
|||
Período Data: <br> |
|||
Inicial: <input type="text" name="periodo_inicial" id="periodo_inicial" class="dateinput"/> |
|||
Final: <input type="text" name="periodo_final" id="periodo_final" class="dateinput"/> <br> |
|||
Interessado: <input type="text" name="interessado" id="interessado" /> <br> |
|||
Assunto: <input type="text" name="assunto" id="assunto" /> <br> |
|||
Tramitando: |
|||
<select name="tramitacao"> |
|||
<option value="1">Sim</option> |
|||
<option value="0">Não</option> |
|||
<option value="" selected>Tanto Faz</option> |
|||
</select> <br> |
|||
<!-- TODO |
|||
Localização Atual: |
|||
<select name="localizacao"> |
|||
<option value=""> - </option> |
|||
</select> <br> |
|||
Situação: |
|||
<select name="situacao"> |
|||
<option value=""> - </option> |
|||
</select> <br><br> |
|||
--> |
|||
|
|||
<input type="submit" value="Pesquisar" class="primary button"/> |
|||
</form> |
|||
{% endif %} |
|||
</fieldset> |
|||
{% endblock %} |
Loading…
Reference in new issue