Browse Source

HOTFIX - correcao no html de adicionar varias materias

pull/2365/head
Cesar Carvalho 6 years ago
parent
commit
b5b842030e
  1. 20
      sapl/templates/sessao/adicionar_varias_materias_expediente.html

20
sapl/templates/sessao/adicionar_varias_materias_expediente.html

@ -32,6 +32,10 @@
<p></p> <p></p>
{% if filter_url and not filter.form.errors %} {% if filter_url and not filter.form.errors %}
{% if paginator.count %}
<form method="POST" enctype="application/x-www-form-urlencoded">
{% csrf_token %}
<table class="table table-striped table-bordered"> <table class="table table-striped table-bordered">
<thead class="thead-default"> <thead class="thead-default">
<tr> <tr>
@ -39,16 +43,12 @@
<td><h3>{% trans "Tipo de Votação" %}</h3></td> <td><h3>{% trans "Tipo de Votação" %}</h3></td>
</tr> </tr>
</thead> </thead>
{% if paginator.count %}
{% if paginator.count > 1 %} {% if paginator.count > 1 %}
<h3>{% blocktrans with paginator.count as total_materias %}Pesquisa concluída com sucesso! Foram encontradas {{total_materias}} matérias.{% endblocktrans %}</h3> <h3>{% blocktrans with paginator.count as total_materias %}Pesquisa concluída com sucesso! Foram encontradas {{total_materias}} matérias.{% endblocktrans %}</h3>
{% elif paginator.count == 1 %} {% elif paginator.count == 1 %}
<h3>{% trans 'Pesquisa concluída com sucesso! Foi encontrada 1 matéria.'%}</h3> <h3>{% trans 'Pesquisa concluída com sucesso! Foi encontrada 1 matéria.'%}</h3>
{% endif %} {% endif %}
<form method="POST" enctype="application/x-www-form-urlencoded">
{% csrf_token %}
{% for m in page_obj %} {% for m in page_obj %}
<tr> <tr>
<td> <td>
@ -78,18 +78,18 @@
</td> </td>
</tr> </tr>
{% endfor %} {% endfor %}
</table>
<input type="submit" value="Adicionar matérias selecionadas" class="btn btn-primary"S>
</form>
{% else %} {% else %}
<table class="table table-striped table-bordered">
<tr> <tr>
<td> <td>
<h3>Nenhuma matéria encontrada com essas especificações</h3> <h3>Nenhuma matéria encontrada com essas especificações</h3>
</td>
</tr> </tr>
{% endif %}
</table> </table>
{% endif %}
<input type="submit" value="Adicionar matérias selecionadas" class="btn btn-primary"S>
</form>
{% endif %} {% endif %}

Loading…
Cancel
Save