Edward
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
2 deletions
-
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 %} |
|
|
|