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.
39 lines
1.6 KiB
39 lines
1.6 KiB
{% extends "relatorios/base_relatorio.html" %}
|
|
{% load i18n %}
|
|
{% load common_tags %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
|
|
<h2>Documento Acessorio</h2>
|
|
|
|
<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>{{ documento }}</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 %}
|
|
{% endblock content %}
|
|
|