Browse Source

Fixes #2482 (#2483)

pull/2490/head
Edward 6 years ago
committed by GitHub
parent
commit
9e62f06263
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      sapl/templates/search/search.html

6
sapl/templates/search/search.html

@ -42,7 +42,11 @@
{% if query %}
<table class="table table-striped table-bordered">
<thead class="thead-default">
<tr><td><h3>Resultados</h3></td></tr>
<tr><td><h3>Resultados - Foram encontrados {{ page.paginator.count }} registros <br/>
{% if page.paginator.count %}
Registros {{ page.start_index }} a {{ page.end_index }} de {{ page.paginator.count }}
{% endif %}
</h3></td></tr>
</thead>
{% for result in page.object_list %}

Loading…
Cancel
Save