Browse Source

Fix #841

pull/872/head
Eduardo Edson Batista Cordeiro Alves 8 years ago
parent
commit
fe172c7e2d
  1. 5
      sapl/templates/protocoloadm/protocolo_filter.html
  2. 18
      sapl/templates/protocoloadm/protocolo_mostrar.html

5
sapl/templates/protocoloadm/protocolo_filter.html

@ -45,9 +45,8 @@
<strong>Interessado:</strong> {{ p.interessado }}</br>
<strong>Natureza do Processo:</strong>
{% if p.tipo_processo == 0 %} Administrativo {% elif p.tipo_processo == 1 %} Matéria Legislativa {% endif %}</br>
<strong>Classificação:</strong>
{{ p.tipo_documento|default_if_none:p.tipo_materia }} </br>
<strong>Classificação:</strong> {{ p.tipo_documento|default_if_none:p.tipo_materia }} </br>
<strong>Anulado: {% if p.anulado %} <font color="red"> Sim {% else %} <font color="green"> Não {% endif %} </font></strong>
</td>
</tr>
{% endfor %}

18
sapl/templates/protocoloadm/protocolo_mostrar.html

@ -3,16 +3,16 @@
{% load crispy_forms_tags %}
{% block detail_content %}
<strong>Protocolo:</strong>{{ protocolo.numero|stringformat:'06d' }}/{{ protocolo.ano }}</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|default:" Não informado." }}</br>
<strong>Protocolo: </strong>{{ protocolo.numero|stringformat:'06d' }}/{{ protocolo.ano }}</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|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 %} Legislativo {% endif %}</br>
<strong>Número de Páginas:</strong> {{ protocolo.numero_paginas }} </br>
<strong>Observação:</strong>{{ protocolo.observacao|default:" Não informado." }}</br>
<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 informado." }}</br>
<strong>Anulado: {% if protocolo.anulado %} <font color="red"> Sim {% else %} <font color="green"> Não {% endif %} </font></strong>
<br /><br />
<strong>Documento Vinculado:</strong>

Loading…
Cancel
Save