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" %} |
{% 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> |
||||
<strong>Protocolo:</strong> <a href="{% url 'protocolo_mostrar' p.numero p.ano %}">{{ p.numero|stringformat:'06d' }}/{{ p.ano }}</a></br> |
<a href="{% url 'protocolo_mostrar' p.numero p.ano %}"> |
||||
<strong>Assunto:</strong> {{ p.assunto_ementa }}</br> |
{{ p.numero|stringformat:'06d' }}/{{ p.ano }} |
||||
<strong>Data Protocolo:</strong> {{ p.data|date:"d/m/Y" }} - Horário: {{ p.timestamp|date:"H:m:s" }}</br> |
</a> |
||||
<strong>Interessado:</strong> {{ p.interessado }}</br> |
- |
||||
<!-- TODO: convert if-else to custom tag --> |
<a href="{% url 'relatorio_etiqueta_protocolo' p.numero p.ano %}"> |
||||
<strong>Natureza do Processo:</strong>{% if p.tipo_protocolo == 0 %} Administrativo {% elif p.tipo_protocolo == 1 %} Matéria Legislativa {% endif %}</br> |
<img src="{% static 'img/etiqueta.png' %}" alt="Etiqueta Individual"> |
||||
<strong>Classificação:</strong> {{ p.tipo_documento }} </br> |
</a></br> |
||||
<p></p> |
<strong>Assunto:</strong> {{ p.assunto_ementa }}</br> |
||||
</td> |
<strong>Data Protocolo:</strong> {{ p.data|date:"d/m/Y" }} - Horário: {{ p.timestamp|date:"H:m:s" }}</br> |
||||
</tr> |
<strong>Interessado:</strong> {{ p.interessado }}</br> |
||||
{% endfor %} |
<strong>Natureza do Processo:</strong> |
||||
</table> |
{% if p.tipo_protocolo == 0 %} |
||||
{% include "paginacao.html" %} |
Administrativo |
||||
{% else %} |
{% elif p.tipo_protocolo == 1 %} |
||||
<h2>Nenhum Registro recuperado</h2> |
Matéria Legislativa |
||||
{% endif %} |
{% 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 %} |
{% endblock detail_content %} |
Loading…
Reference in new issue