|
|
@ -4,14 +4,13 @@ |
|
|
|
|
|
|
|
{% block detail_content %} |
|
|
|
<strong>Protocolo:</strong>{{ protocolo.numero|stringformat:'06d' }}/{{ protocolo.ano }}</br> |
|
|
|
<strong>Assunto:</strong> {{ protocolo.assunto_ementa }}</br> |
|
|
|
<strong>Assunto:</strong> {{ protocolo.assunto_ementa|default:" Não informado." }}</br> |
|
|
|
<strong>Data Protocolo:</strong> {{ protocolo.data|date:"d/m/Y" }} - Horário: {{ protocolo.hora|date:"H:i" }}</br> |
|
|
|
<strong>Interessado:</strong> {{ protocolo.interessado }}</br> |
|
|
|
<strong>Interessado:</strong> {{ protocolo.interessado|default:" Não informado." }}</br> |
|
|
|
<!-- TODO: convert if-else to custom tag --> |
|
|
|
<strong>Natureza do Processo:</strong>{% if protocolo.tipo_processo == 0 %} Administrativo {% elif protocolo.tipo_processo == 1 %} Matéria Legislativa {% endif %}</br> |
|
|
|
<strong>Classificação:</strong> {{ protocolo.tipo_documento }} </br> |
|
|
|
<strong>Natureza do Processo:</strong>{% if protocolo.tipo_processo == 0 %} Administrativo {% elif protocolo.tipo_processo == 1 %} Legislativo {% endif %}</br> |
|
|
|
<strong>Número de Páginas:</strong> {{ protocolo.numero_paginas }} </br> |
|
|
|
<strong>Observação:</strong>{{ protocolo.observacao|default:"Não há" }}</br> |
|
|
|
<strong>Observação:</strong>{{ protocolo.observacao|default:" Não informado." }}</br> |
|
|
|
|
|
|
|
<br /> |
|
|
|
|
|
|
@ -37,6 +36,6 @@ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<a target="popup" class="btn btn-primary" onclick="window.open('{% url 'sapl.protocoloadm:comprovante_protocolo' protocolo.pk%}','Comprovante','width=800, height=600')">Comprovante |
|
|
|
<a target="popup" class="btn btn-primary" onclick="window.open('{% url 'sapl.protocoloadm:comprovante_protocolo' protocolo.pk%}','Comprovante','width=800, height=800')">Comprovante |
|
|
|
</a> |
|
|
|
{% endblock detail_content %} |
|
|
|