mirror of https://github.com/interlegis/sapl.git
Edward
9 years ago
3 changed files with 191 additions and 113 deletions
@ -0,0 +1,70 @@ |
|||||
|
{% 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 %} |
||||
|
{% if numero_res > 1 %} |
||||
|
<h3>Pesquisa concluída com sucesso! Foram encontrados {{numero_res}} protocolos.</h3> |
||||
|
{% elif numero_res == 1 %} |
||||
|
<h3>Pesquisa concluída com sucesso! Foi encontrado {{numero_res}} protocolo.</h3> |
||||
|
{% endif %} |
||||
|
{% endif %} |
||||
|
{% for p in page_obj %} |
||||
|
<tr> |
||||
|
<td> |
||||
|
<strong>Protocolo: |
||||
|
<a href="{% url 'protocoloadm:protocolo_mostrar' p.numero p.ano %}"> |
||||
|
{{ p.numero|stringformat:'06d' }}/{{ p.ano }} |
||||
|
</a></strong> |
||||
|
<strong>-</strong> |
||||
|
|
||||
|
<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|default_if_none:"Não Informado"}}</br> |
||||
|
|
||||
|
<strong>Data Protocolo:</strong> {{ p.data|date:"d/m/Y"|default_if_none:"Não Informado" }} - 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|default_if_none:"Não Informado" }} </br> |
||||
|
<p></p> |
||||
|
</td> |
||||
|
</tr> |
||||
|
{% endfor %} |
||||
|
{% else %} |
||||
|
<tr> |
||||
|
<td> |
||||
|
<h3>Nenhum protocolo encontrado com essas especificações</h3> |
||||
|
</tr> |
||||
|
{% endif %} |
||||
|
|
||||
|
</table> |
||||
|
|
||||
|
{% include "paginacao.html" %} |
||||
|
|
||||
|
{% endblock detail_content %} |
Loading…
Reference in new issue