mirror of https://github.com/interlegis/sapl.git
Eduardo Calil
9 years ago
committed by
Edward Ribeiro
4 changed files with 168 additions and 53 deletions
@ -0,0 +1,37 @@ |
|||||
|
{% if is_paginated %} |
||||
|
<nav class="text-center"> |
||||
|
<ul class="pagination"> |
||||
|
{% if page_obj.has_previous %} |
||||
|
<li class="page-item"> |
||||
|
<a class="page-link" href="?page={{page_obj.previous_page_number}}{{filter_url}}"> |
||||
|
<span class="pager-prev">Anterior</span> |
||||
|
</a> |
||||
|
</li> |
||||
|
{% else %} |
||||
|
<li class="pager-prev disabled"><a href="">Anterior</a></li> |
||||
|
{% endif %} |
||||
|
|
||||
|
{% for page in page_range %} |
||||
|
{% if page == None or page == 'None' %} |
||||
|
<li class="page-item disabled"> |
||||
|
<a class="page-link" href="">...</a> |
||||
|
</li> |
||||
|
{% else %} |
||||
|
<li {% if page == page_obj.number %} class="page-item active" {% endif %}> |
||||
|
<a class="page-link" href="?page={{page}}{{filter_url}}">{{ page }}</a> |
||||
|
</li> |
||||
|
{% endif %} |
||||
|
{% endfor %} |
||||
|
|
||||
|
{% if page_obj.has_next %} |
||||
|
<li class="page-item"> |
||||
|
<a class="page-link" href="?page={{page_obj.next_page_number}}{{filter_url}}"> |
||||
|
<span class="pager-next">Próxima</span> |
||||
|
</a> |
||||
|
</li> |
||||
|
{% else %} |
||||
|
<li class="pager-next disabled"><a href="">Próxima</a></li> |
||||
|
{% endif %} |
||||
|
</ul> |
||||
|
</nav> |
||||
|
{% endif %} |
@ -0,0 +1,66 @@ |
|||||
|
{% extends "protocoloadm/protocoloadm_detail.html" %} |
||||
|
{% load i18n %} |
||||
|
{% load crispy_forms_tags %} |
||||
|
{% load static %} |
||||
|
{% block actions %}{% endblock %} |
||||
|
|
||||
|
{% block sections_nav %} {% endblock %} |
||||
|
|
||||
|
{% block detail_content %} |
||||
|
<h1><b>Pesquisar Protocolo</b></h1> |
||||
|
<br></br> |
||||
|
|
||||
|
{% crispy filter.form %} |
||||
|
|
||||
|
<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 filter_url %} |
||||
|
<h3>Pesquisa concluída com sucesso! Foram encontrados {{numero_res}} protocolos.</h3> |
||||
|
{% endif %} |
||||
|
{% for p in page_obj %} |
||||
|
<tr> |
||||
|
<td> |
||||
|
<strong>Protocolo:</strong> |
||||
|
<a href="{% url 'protocoloadm:protocolo_mostrar' p.numero p.ano %}"> |
||||
|
{{ p.numero|stringformat:'06d' }}/{{ p.ano }} |
||||
|
</a> |
||||
|
- |
||||
|
|
||||
|
<a href="{% url 'relatorios:relatorio_etiqueta_protocolo' p.numero p.ano %}"> |
||||
|
<img src="{% static 'img/etiqueta.png' %}" alt="Etiqueta Individual"> |
||||
|
</a></br> |
||||
|
|
||||
|
<strong>Assunto:</strong> {{ p.assunto_ementa }}</br> |
||||
|
|
||||
|
<strong>Data Protocolo:</strong> {{ p.data|date:"d/m/Y" }} - Horário: {{ p.timestamp|date:"H:m:s" }}</br> |
||||
|
|
||||
|
<strong>Interessado:</strong> {{ p.interessado }}</br> |
||||
|
|
||||
|
<strong>Natureza do Processo:</strong> |
||||
|
{% if p.tipo_processo == 0 %} |
||||
|
Administrativo |
||||
|
{% elif p.tipo_processo == 1 %} |
||||
|
Matéria Legislativa |
||||
|
{% endif %}</br> |
||||
|
|
||||
|
<strong>Classificação:</strong> {{ p.tipo_documento }} </br> |
||||
|
<p></p> |
||||
|
</td> |
||||
|
</tr> |
||||
|
{% endfor %} |
||||
|
{% else %} |
||||
|
<tr> |
||||
|
<td> |
||||
|
<h3>Nenhum protocolo encontrado com essas especificações</h3> |
||||
|
</tr> |
||||
|
{% endif %} |
||||
|
|
||||
|
</table> |
||||
|
|
||||
|
{% include "paginacao_pesquisa_materia.html" %} |
||||
|
|
||||
|
{% endblock detail_content %} |
Loading…
Reference in new issue