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.
32 lines
853 B
32 lines
853 B
{% extends "relatorios/base_relatorio.html" %}
|
|
{% load i18n %}
|
|
{% load common_tags %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
<h2>Relatório de Atas das Sessões Plenárias</h2>
|
|
|
|
<b>PERÍODO: {{ periodo }}<br /></b><br /><br/>
|
|
{% if object_list|length > 0 %}
|
|
<table class="table table-striped table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>Sessão</th>
|
|
<th>Ata</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for sessao in object_list %}
|
|
<tr>
|
|
<td>{{sessao}}</td>
|
|
<td><a href="{{ sessao.upload_ata.url }}">
|
|
<img src="{% static 'img/file.png' %}">
|
|
</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% else %}
|
|
<font size="5"><p align="center">Nenhum sessão com ata foi encontrada!</p></font>
|
|
{% endif %}
|
|
{% endblock content %}
|
|
|