|
@ -6,18 +6,18 @@ |
|
|
{% if protocolos %} |
|
|
{% if protocolos %} |
|
|
<!-- Total: {{ protocolos|length }} --> |
|
|
<!-- Total: {{ protocolos|length }} --> |
|
|
<table> |
|
|
<table> |
|
|
<tr><td>Número de Protocolo</td> |
|
|
<tr><td><h2>Resultados</h2></td> |
|
|
<td>Ano</td> |
|
|
|
|
|
<td>Assunto</td> |
|
|
|
|
|
<td>Tipo de Documento</td> |
|
|
|
|
|
<td>Data</td> |
|
|
|
|
|
</tr> |
|
|
</tr> |
|
|
{% for p in protocolos %} |
|
|
{% for p in protocolos %} |
|
|
<tr><td>{{ p.numero }}</td> |
|
|
<tr> |
|
|
<td>{{ p.ano }}</td> |
|
|
<td> |
|
|
<td>{{ p.assunto_ementa }}</td> |
|
|
<strong>Protocolo:</strong> <a href="">{{ p.numero|stringformat:'06d' }}/{{ p.ano }}</a></br> |
|
|
<td>{{ p.tipo_documento }}</td> |
|
|
<strong>Assunto:</strong> {{ p.assunto_ementa }}</br> |
|
|
<td>{{ p.data|date:"d/m/Y" }}</td> |
|
|
<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> |
|
|
|
|
|
<!-- TODO: convert if-else to custom tag --> |
|
|
|
|
|
<strong>Natureza do Processo:</strong>{% if p.tipo_protocolo == 0 %} Administrativo {% elif p.tipo_protocolo == 1 %} Matéria Legislativa {% endif %}</br> |
|
|
|
|
|
<strong>Classificação:</strong> {{ p.tipo_documento }} </br> |
|
|
</tr> |
|
|
</tr> |
|
|
{% endfor %} |
|
|
{% endfor %} |
|
|
</table> |
|
|
</table> |
|
|