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.
20 lines
481 B
20 lines
481 B
{% extends "crud/list.html" %}
|
|
{% load i18n %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block base_content %}
|
|
{% block detail_content %}
|
|
<table width="100%">
|
|
{% for sessao in page_obj %}
|
|
<tr>
|
|
<th>
|
|
<a href="{% url '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 %}
|
|
{% endblock %}
|
|
|