mirror of https://github.com/interlegis/sapl.git
Edward Ribeiro
9 years ago
4 changed files with 42 additions and 6 deletions
@ -0,0 +1,21 @@ |
|||
{% extends "protocoloadm/protocoloadm_detail.html" %} |
|||
{% load i18n %} |
|||
{% load crispy_forms_tags %} |
|||
|
|||
{% block detail_content %} |
|||
<strong>Protocolo:</strong>{{ protocolo.numero|stringformat:'06d' }}/{{ protocolo.ano }}</br> |
|||
<strong>Assunto:</strong> {{ protocolo.assunto_ementa }}</br> |
|||
<strong>Data Protocolo:</strong> {{ protocolo.data|date:"d/m/Y" }} - Horário: {{ protocolo.timestamp|date:"H:m:s" }}</br> |
|||
<strong>Interessado:</strong> {{ protocolo.interessado }}</br> |
|||
<!-- TODO: convert if-else to custom tag --> |
|||
<strong>Natureza do Processo:</strong>{% if protocolo.tipo_protocolo == 0 %} Administrativo {% elif protocolo.tipo_protocolo == 1 %} Matéria Legislativa {% endif %}</br> |
|||
<strong>Classificação:</strong> {{ protocolo.tipo_documento }} </br> |
|||
<strong>Número de Páginas:</strong> {{ protocolo.numero_paginas }} </br> |
|||
<strong>Observação:</strong>{{ protocolo.observacao }}</br> |
|||
<form method="POST" action=""> |
|||
{% csrf_token %} |
|||
<strong>Documento Vinculado:</strong></br> |
|||
<input type="submit" value="Criar Documento" class="secondary button"> |
|||
<input type="submit" value="Comprovante" class="secondary button"> |
|||
</form> |
|||
{% endblock detail_content %} |
Loading…
Reference in new issue