|
|
@ -5,7 +5,7 @@ |
|
|
|
|
|
|
|
{% block sections_nav %} {% endblock %} |
|
|
|
|
|
|
|
{% block detail_content %} |
|
|
|
{% block base_content %} |
|
|
|
<h1><b>Pesquisa de Protocolo</b></h1> |
|
|
|
<br></br> |
|
|
|
{% if filter_url %} |
|
|
@ -18,13 +18,9 @@ |
|
|
|
{% crispy filter.form %} |
|
|
|
{% endif %} |
|
|
|
|
|
|
|
|
|
|
|
{% if filter_url %} |
|
|
|
<p></p> |
|
|
|
<table class="table table-striped table-bordered"> |
|
|
|
<thead class="thead-default"> |
|
|
|
<tr><td><h3>Resultados</h3></td></tr> |
|
|
|
</thead> |
|
|
|
<thead class="thead-default"><tr><td><h3>Resultados</h3></td></tr></thead> |
|
|
|
{% if page_obj|length %} |
|
|
|
{% if filter_url %} |
|
|
|
{% if numero_res > 1 %} |
|
|
@ -37,44 +33,21 @@ |
|
|
|
<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> |
|
|
|
|
|
|
|
<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.hora|date:"G:i: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> |
|
|
|
|
|
|
|
{% 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> |
|
|
|
<tr><td><h3>Nenhum protocolo encontrado com essas especificações</h3></tr> |
|
|
|
{% endif %} |
|
|
|
|
|
|
|
</table> |
|
|
|
|
|
|
|
{% include "paginacao.html" %} |
|
|
|
|
|
|
|
{% endif %} |
|
|
|
|
|
|
|
{% endblock detail_content %} |
|
|
|
{% endblock base_content %} |
|
|
|