8
0
Fork 0
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:
detraz 2018-10-27 17:34:46 +02:00 committed by root
parent aa2b79bd87
commit 7184aa7016

View file

@ -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>