mirror of https://github.com/interlegis/sapl.git
Eduardo Edson Batista Cordeiro Alves
9 years ago
3 changed files with 40 additions and 24 deletions
After Width: | Height: | Size: 1021 B |
@ -1,20 +1,34 @@ |
|||
{% extends "crud/list.html" %} |
|||
{% load i18n %} |
|||
{% load crispy_forms_tags %} |
|||
{% extends "base.html" %} |
|||
{% load i18n staticfiles %} |
|||
|
|||
{% block base_content %} |
|||
{% block detail_content %} |
|||
<table width="100%"> |
|||
{% for sessao in page_obj %} |
|||
<tr> |
|||
<th> |
|||
<a href="{% url 'sapl.sessao:pauta_sessao_detail' sessao.id %}">{{sessao}}</a> |
|||
<br /> |
|||
Data: {{sessao.data_inicio}} - Abertura {{sessao.hora_inicio}} |
|||
</th> |
|||
</tr> |
|||
{% endfor %} |
|||
</table> |
|||
{% include "paginacao.html" %} |
|||
{% endblock %} |
|||
|
|||
{% if not page_obj %} |
|||
<p>Não há pautas.</p> |
|||
{% else %} |
|||
<table class="table table-striped table-hover"> |
|||
<thead> |
|||
<tr> |
|||
<th>Data</th> |
|||
<th>Sessão</th> |
|||
<th>PDF</th> |
|||
</tr> |
|||
</thead> |
|||
<tbody> |
|||
{% for sessao in page_obj %} |
|||
<tr> |
|||
<td><a href="{% url 'sapl.sessao:pauta_sessao_detail' sessao.id %}"> |
|||
{{sessao.data_inicio}} - {{sessao.hora_inicio}} |
|||
</a></td> |
|||
<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 %} |
|||
|
|||
{% include "paginacao.html" %} |
|||
{% endblock %} |
|||
|
Loading…
Reference in new issue