|
@ -1,22 +1,33 @@ |
|
|
{% extends "protocoloadm/protocoloadm_detail.html" %} |
|
|
{% extends "protocoloadm/protocoloadm_detail.html" %} |
|
|
{% load i18n %} |
|
|
{% load i18n %} |
|
|
{% load crispy_forms_tags %} |
|
|
{% load crispy_forms_tags %} |
|
|
|
|
|
{% load static %} |
|
|
|
|
|
|
|
|
{% block detail_content %} |
|
|
{% block detail_content %} |
|
|
{% if protocolos %} |
|
|
{% if protocolos %} |
|
|
<!-- Total: {{ protocolos|length }} --> |
|
|
|
|
|
<table> |
|
|
<table> |
|
|
<tr><td><h2>Resultados</h2></td> |
|
|
<tr><td><h2>Resultados</h2></td> |
|
|
</tr> |
|
|
</tr> |
|
|
{% for p in protocolos %} |
|
|
{% for p in protocolos %} |
|
|
<tr> |
|
|
<tr> |
|
|
<td> |
|
|
<td> |
|
|
<strong>Protocolo:</strong> <a href="{% url 'protocolo_mostrar' p.numero p.ano %}">{{ p.numero|stringformat:'06d' }}/{{ p.ano }}</a></br> |
|
|
<strong>Protocolo:</strong> |
|
|
|
|
|
<a href="{% url 'protocolo_mostrar' p.numero p.ano %}"> |
|
|
|
|
|
{{ p.numero|stringformat:'06d' }}/{{ p.ano }} |
|
|
|
|
|
</a> |
|
|
|
|
|
- |
|
|
|
|
|
<a href="{% url '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>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>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>Interessado:</strong> {{ p.interessado }}</br> |
|
|
<!-- TODO: convert if-else to custom tag --> |
|
|
<strong>Natureza do Processo:</strong> |
|
|
<strong>Natureza do Processo:</strong>{% if p.tipo_protocolo == 0 %} Administrativo {% elif p.tipo_protocolo == 1 %} Matéria Legislativa {% endif %}</br> |
|
|
{% if p.tipo_protocolo == 0 %} |
|
|
|
|
|
Administrativo |
|
|
|
|
|
{% elif p.tipo_protocolo == 1 %} |
|
|
|
|
|
Matéria Legislativa |
|
|
|
|
|
{% endif %}</br> |
|
|
<strong>Classificação:</strong> {{ p.tipo_documento }} </br> |
|
|
<strong>Classificação:</strong> {{ p.tipo_documento }} </br> |
|
|
<p></p> |
|
|
<p></p> |
|
|
</td> |
|
|
</td> |
|
@ -24,7 +35,7 @@ |
|
|
{% endfor %} |
|
|
{% endfor %} |
|
|
</table> |
|
|
</table> |
|
|
{% include "paginacao.html" %} |
|
|
{% include "paginacao.html" %} |
|
|
{% else %} |
|
|
{% else %} |
|
|
<h2>Nenhum Registro recuperado</h2> |
|
|
<h2>Nenhum Registro recuperado</h2> |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
{% endblock detail_content %} |
|
|
{% endblock detail_content %} |