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.
28 lines
597 B
28 lines
597 B
{% extends "base.html" %}
|
|
{% load i18n staticfiles %}
|
|
|
|
{% block base_content %}
|
|
|
|
{% if not page_obj %}
|
|
<p>Não há pautas.</p>
|
|
{% else %}
|
|
<table class="table table-striped table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>Sessão</th>
|
|
<th>PDF</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for sessao in page_obj %}
|
|
<tr>
|
|
<td>{{sessao}}</td>
|
|
<td><a href="{% url 'sapl.relatorios:relatorio_sessao_plenaria' sessao.id %}">
|
|
<img src="{% static 'img/file.png' %}">
|
|
</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|