Browse Source

Fixes #926

pull/941/head
Edward Ribeiro 8 years ago
parent
commit
6f005cd450
  1. 6
      sapl/protocoloadm/views.py
  2. 13
      sapl/templates/protocoloadm/protocolo_mostrar.html

6
sapl/protocoloadm/views.py

@ -322,12 +322,12 @@ class ProtocoloMostrarView(PermissionRequiredMixin, TemplateView):
context['materia'] = materia
elif protocolo.tipo_documento:
try:
documento = DocumentoAdministrativo.objects.get(
documentos = DocumentoAdministrativo.objects.filter(
numero_protocolo=protocolo.numero, ano=protocolo.ano)
except ObjectDoesNotExist:
context['documento'] = None
context['documentos'] = None
else:
context['documento'] = documento
context['documentos'] = documentos
context['protocolo'] = protocolo
return context

13
sapl/templates/protocoloadm/protocolo_mostrar.html

@ -14,12 +14,15 @@
<strong>Anulado: {% if protocolo.anulado %} <font color="red"> Sim {% else %} <font color="green"> Não {% endif %} </font></strong>
<br /><br />
<strong>Documento Vinculado:</strong>
<strong>Documentos Vinculados:</strong>
<br/>
{% if protocolo.tipo_documento %}
{% if documento %}
<a href="{% url 'sapl.protocoloadm:documentoadministrativo_detail' documento.pk %}">{{documento.tipo}} - {{documento.numero}}/{{documento.ano}}</a>
</br>
{% if documentos %}
{% for documento in documentos %}
&nbsp;&nbsp;&nbsp;&nbsp;
<a href="{% url 'sapl.protocoloadm:documentoadministrativo_detail' documento.pk %}">{{documento.tipo}} - {{documento.numero}}/{{documento.ano}}</a>
</br>
{% endfor %}
{% else %}
<br />
{% if not protocolo.anulado %} <a href="{% url 'sapl.protocoloadm:criar_documento' protocolo.pk %}" class="btn btn-primary">Criar Documento</a>{% endif %}

Loading…
Cancel
Save