mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 09:26:27 +00:00
[Printer] Pagination sur le template
This commit is contained in:
parent
aa2b79bd87
commit
7184aa7016
1 changed files with 8 additions and 0 deletions
|
@ -25,6 +25,10 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||
{% load i18n %}
|
||||
|
||||
<div class="table-responsive">
|
||||
{% if jobs_list.paginator %}
|
||||
{% include "pagination.html" with list=jobs_list %}
|
||||
{% endif %}
|
||||
|
||||
<table class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
|
@ -55,4 +59,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||
{% acl_end %}
|
||||
{% endfor %}
|
||||
</table>
|
||||
|
||||
{% if jobs_list.paginator %}
|
||||
{% include "pagination.html" with list=jobs_list %}
|
||||
{% endif %}
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue