Browse Source

Remove paginação errada na telas de pesquisa de pauta de sessão e sessão

pull/691/head
Eduardo Edson Batista Cordeiro Alves 8 years ago
parent
commit
e858678d5a
  1. 63
      sapl/templates/sessao/pauta_sessao_filter.html
  2. 13
      sapl/templates/sessao/sessaoplenaria_filter.html

63
sapl/templates/sessao/pauta_sessao_filter.html

@ -5,45 +5,36 @@
{% block sections_nav %} {% endblock %} {% block sections_nav %} {% endblock %}
{% block detail_content %} {% block base_content %}
<h1><b>Pesquisar Pauta de Sessão</b></h1> <h1><b>Pesquisar Pauta de Sessão</b></h1>
<br></br> <br></br>
{% crispy filter.form %} {% if not filter_url %}
<p></p> {% crispy filter.form %}
<table class="table table-striped table-hover"> {% endif %}
<thead class="thead-default">
<tr><td><h3>Resultados</h3></td></tr> {% if filter_url %}
</thead> <p></p>
{% if page_obj|length %} <table class="table table-striped table-hover">
{% if numero_res > 1 %} <thead class="thead-default"><tr><td><h3>Resultados</h3></td></tr></thead>
<h3>Foram encontradas {{numero_res}} pautas de sessões.</h3></br> {% if page_obj|length %}
{% elif numero_res == 1 %} {% if numero_res > 1 %}
<h3>Foi encontrada {{numero_res}} pauta de sessão.</h3></br> <h3>Foram encontradas {{numero_res}} pautas de sessões.</h3></br>
{% endif %} {% elif numero_res == 1 %}
<h3>Foi encontrada {{numero_res}} pauta de sessão.</h3></br>
{% for s in page_obj %}
<tr>
<td>
<a href="{% url 'sapl.sessao:pauta_sessao_detail' s.id %}"><strong>{{s}}</strong></br></a>
</td>
<td>
<a href="{% url 'sapl.relatorios:relatorio_sessao_plenaria' s.id %}">
<img src="{% static 'img/file.png' %}">
</a>
</td>
</tr>
{% endfor %}
{% else %}
<tr>
<td>
<h3>Nenhuma Pauta de Sessão encontrada com essas especificações</h3>
</tr>
{% endif %} {% endif %}
{% for s in page_obj %}
<tr>
<td><a href="{% url 'sapl.sessao:pauta_sessao_detail' s.id %}"><strong>{{s}}</strong></br></a></td><td>
<a href="{% url 'sapl.relatorios:relatorio_sessao_plenaria' s.id %}"><img src="{% static 'img/file.png' %}"></a>
</td>
</tr>
{% endfor %}
{% else %}
<tr><td><h3>Nenhuma Pauta de Sessão encontrada com essas especificações</h3></tr>
{% endif %}
</table> </table>
{% include "paginacao.html" %}
{% include "paginacao.html" %} {% endif %}
{% endblock base_content %}
{% endblock detail_content %}

13
sapl/templates/sessao/sessaoplenaria_filter.html

@ -18,17 +18,18 @@
{% block sections_nav %} {% endblock %} {% block sections_nav %} {% endblock %}
{% block detail_content %} {% block base_content %}
<h1><b>Pesquisar Sessão Plenária</b></h1> <h1><b>Pesquisar Sessão Plenária</b></h1>
<br></br> <br></br>
{% crispy filter.form %} {% if not filter_url %}
{% crispy filter.form %}
{% endif %}
{% if filter_url %} {% if filter_url %}
<p></p> <p></p>
<table class="table table-striped table-hover"> <table class="table table-striped table-hover">
<thead class="thead-default"> <thead class="thead-default"><tr><td><h3>Resultados</h3></td></tr></thead>
<tr><td><h3>Resultados</h3></td></tr>
</thead>
{% if page_obj|length %} {% if page_obj|length %}
{% if numero_res > 1 %} {% if numero_res > 1 %}
<h3>Foram encontradas {{numero_res}} sessões.</h3></br> <h3>Foram encontradas {{numero_res}} sessões.</h3></br>
@ -53,4 +54,4 @@
</table> </table>
{% include "paginacao.html" %} {% include "paginacao.html" %}
{% endif %} {% endif %}
{% endblock detail_content %} {% endblock base_content %}

Loading…
Cancel
Save