mirror of https://github.com/interlegis/sapl.git
Browse Source
* Adicionar novo título de relatório * Adicionar pesquisa de doc acessórios de matérias * Adicionar relatório de documentos acessóriospull/2758/head
João Rodrigues
5 years ago
committed by
Cesar Carvalho
5 changed files with 137 additions and 5 deletions
@ -0,0 +1,43 @@ |
|||
{% extends "crud/list.html" %} |
|||
{% load i18n %} |
|||
{% load crispy_forms_tags %} |
|||
|
|||
{% block base_content %} |
|||
{% if not show_results %} |
|||
{% crispy filter.form %} |
|||
{% else %} |
|||
<div class="actions btn-group float-right" role="group"> |
|||
<a href="{% url 'sapl.base:relatorio_documentos_acessorios' %}" class="btn btn-outline-primary">{% trans 'Fazer uma nova pesquisa' %}</a> |
|||
</div> |
|||
<br /><br /><br /><br /> |
|||
<b>PARÂMETROS DE PESQUISA<br /></b> |
|||
 Tipo de Documento: {{ tipo_documento }}<br /> |
|||
 Tipo de Matéria do Documento: {{ tipo_materia }}<br /> |
|||
 Período: {{ periodo }}<br /><br /><br /> |
|||
{% if object_list %} |
|||
{% if object_list|length == 1 %} |
|||
<tr><td><h3 style="text-align: left;">Foi encontrado 1 documento com esses parâmetros.</h3></td></tr><br><br> |
|||
{% else %} |
|||
<tr><td><h3 style="text-align: left;">Foram encontrados {{ object_list|length }} documentos com esses parâmetros.</h3></td></tr><br><br> |
|||
{% endif %} |
|||
<table class="table table-bordered table-hover"> |
|||
<thead class="thead-default"> |
|||
<tr class="active"> |
|||
<th>Documento Acessório</th> |
|||
<th>Matéria do Documento</th> |
|||
</tr> |
|||
</thead> |
|||
<tbody> |
|||
{% for documento in object_list %} |
|||
<tr> |
|||
<td><a href="{% url 'sapl.materia:documentoacessorio_detail' documento.pk %}">{{ documento }}</a></td> |
|||
<td>{{ documento.materia }}</td> |
|||
</tr> |
|||
{% endfor %} |
|||
</tbody> |
|||
</table> |
|||
{% else %} |
|||
<tr><td><h3 style="text-align: left;">Nenhuma documento encontrado com esses parâmetros.</h3></td></tr><br><br> |
|||
{% endif %} |
|||
{% endif %} |
|||
{% endblock base_content %} |
Loading…
Reference in new issue