mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
2.5 KiB
46 lines
2.5 KiB
{% extends "relatorios/base_relatorio.html" %}
|
|
{% load i18n %}
|
|
{% load common_tags %}
|
|
{% load crispy_forms_tags static %}
|
|
|
|
{% block content %}
|
|
<h2>Documentos Administrativos</h2>
|
|
{% if documentoadministrativo_list|length %}
|
|
<h3>Número de documentos: {{numero_res}}</h3>
|
|
{% for d in documentoadministrativo_list %}
|
|
<div style="border-top: 1px solid black;margin-bottom:0.3cm">
|
|
{% if request.user.is_anonymous and not d.restrito or not request.user.is_anonymous%}
|
|
<strong><a href="{% url 'sapl.protocoloadm:documentoadministrativo_detail' d.id %}">{{d.tipo.sigla}} {{d.numero}}/{{d.ano}} - {{d.tipo}}</strong></a></br>
|
|
<strong>Interessado:</strong> {{ d.interessado|default_if_none:"Não informado"}}
|
|
</br>
|
|
<strong>Assunto:</strong> <a>{{ d.assunto|safe}}</a>
|
|
</br>
|
|
{% if d.protocolo %}
|
|
<strong>Protocolo:</strong> <a href="{% url 'sapl.protocoloadm:protocolo_mostrar' d.protocolo.id %}">{{ d.protocolo}}</a></br>
|
|
{% endif %}
|
|
{% define d.tramitacaoadministrativo_set.last as tram %}
|
|
{% if tram.unidade_tramitacao_destino %}
|
|
<strong>Localização Atual:</strong> {{tram.unidade_tramitacao_destino}}
|
|
</br>
|
|
<strong>Status:</strong> {{tram.status}}
|
|
</br>
|
|
{% endif %}
|
|
{% define d.documentoacessorioadministrativo_set.all as access %}
|
|
{% if access.exists %}
|
|
<strong>Documentos Acessórios:</strong>
|
|
<a href="{% url 'sapl.protocoloadm:documentoacessorioadministrativo_list' d.id %}">
|
|
{{ access.count }}
|
|
</a>
|
|
</br>
|
|
{% endif %}
|
|
{% if d.tramitacao and mail_service_configured %}
|
|
<a href="{% url 'sapl.protocoloadm:acompanhar_documento' d.id %}">Acompanhar Documento</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% endfor %}
|
|
{% else %}
|
|
<h3>Nenhum documento encontrado com essas especificações</h3>
|
|
{% endif %}
|
|
{% endblock content %}
|
|
|