mirror of https://github.com/interlegis/sapl.git
Eduardo Edson Batista Cordeiro Alves
9 years ago
5 changed files with 43 additions and 40 deletions
After Width: | Height: | Size: 694 B |
@ -1,30 +1,41 @@ |
|||
{% extends "protocoloadm/protocoloadm_detail.html" %} |
|||
{% load i18n %} |
|||
{% load crispy_forms_tags %} |
|||
{% load static %} |
|||
|
|||
{% block detail_content %} |
|||
{% if protocolos %} |
|||
<!-- Total: {{ protocolos|length }} --> |
|||
<table> |
|||
<tr><td><h2>Resultados</h2></td> |
|||
</tr> |
|||
{% for p in protocolos %} |
|||
<tr> |
|||
<td> |
|||
<strong>Protocolo:</strong> <a href="{% url 'protocolo_mostrar' p.numero p.ano %}">{{ p.numero|stringformat:'06d' }}/{{ p.ano }}</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> |
|||
<!-- 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> |
|||
<p></p> |
|||
</td> |
|||
</tr> |
|||
{% endfor %} |
|||
</table> |
|||
{% include "paginacao.html" %} |
|||
{% else %} |
|||
<h2>Nenhum Registro recuperado</h2> |
|||
{% endif %} |
|||
{% if protocolos %} |
|||
<table> |
|||
<tr><td><h2>Resultados</h2></td> |
|||
</tr> |
|||
{% for p in protocolos %} |
|||
<tr> |
|||
<td> |
|||
<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>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_protocolo == 0 %} |
|||
Administrativo |
|||
{% elif p.tipo_protocolo == 1 %} |
|||
Matéria Legislativa |
|||
{% endif %}</br> |
|||
<strong>Classificação:</strong> {{ p.tipo_documento }} </br> |
|||
<p></p> |
|||
</td> |
|||
</tr> |
|||
{% endfor %} |
|||
</table> |
|||
{% include "paginacao.html" %} |
|||
{% else %} |
|||
<h2>Nenhum Registro recuperado</h2> |
|||
{% endif %} |
|||
{% endblock detail_content %} |
Loading…
Reference in new issue