Browse Source

Fix #924

pull/941/head
Eduardo Edson Batista Cordeiro Alves 8 years ago
parent
commit
107e0e3402
  1. 7
      sapl/templates/protocoloadm/protocolo_mostrar.html

7
sapl/templates/protocoloadm/protocolo_mostrar.html

@ -17,24 +17,17 @@
<strong>Documentos Vinculados:</strong>
<br/>
{% if protocolo.tipo_documento %}
{% 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 %}
{% endif %}
{% elif protocolo.tipo_materia %}
{% if materia %}
<a href="{% url 'sapl.materia:materialegislativa_detail' materia.pk %}"> {{materia}} </a>
</br>
{% else %}
<br />
{% if not protocolo.anulado %}<a href="{% url 'sapl.materia:materia_create_simplificado' protocolo.pk %}" class="btn btn-primary">Criar Matéria</a>{% endif %}
{% endif %}
{% endif %}

Loading…
Cancel
Save