Browse Source

Fixes #1969 (#1970)

pull/1972/head
Edward 7 years ago
committed by GitHub
parent
commit
e1df8e9725
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      sapl/templates/protocoloadm/comprovante.html

8
sapl/templates/protocoloadm/comprovante.html

@ -61,13 +61,13 @@
<th>Data / Horário</th>
<td>{{ protocolo.data|date:"d/m/Y" }} - {{ protocolo.timestamp|date:"H:i:s" }}</td>
</tr>
{% if protocolo.tipo_processo == 0 %}
{% if protocolo.tipo_processo == 1 %}
<tr>
<th>Ementa</th>
<td>{{ protocolo.assunto_ementa }}</td>
</tr>
<tr>
<th>Interessado</th>
<th>Autor</th>
<td>{{ protocolo.interessado }}</td>
</tr>
{% endif %}
@ -85,5 +85,9 @@
<th>Número Páginas</th>
<td>{{ protocolo.numero_paginas }}</td>
</tr>
<tr>
<th>Comprovante emitido por</th>
<td>{{ request.user.username }}</td>
</tr>
</table>
{% endblock detail_content %}

Loading…
Cancel
Save