From 7184aa701669f65dc6d2292d5eaef7c5186f38e7 Mon Sep 17 00:00:00 2001 From: detraz Date: Sat, 27 Oct 2018 17:34:46 +0200 Subject: [PATCH] [Printer] Pagination sur le template --- printer/templates/printer/aff_jobs.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/printer/templates/printer/aff_jobs.html b/printer/templates/printer/aff_jobs.html index 6bcd2b0d..197ef8df 100644 --- a/printer/templates/printer/aff_jobs.html +++ b/printer/templates/printer/aff_jobs.html @@ -25,6 +25,10 @@ with this program; if not, write to the Free Software Foundation, Inc., {% load i18n %}
+ {% if jobs_list.paginator %} + {% include "pagination.html" with list=jobs_list %} + {% endif %} + @@ -55,4 +59,8 @@ with this program; if not, write to the Free Software Foundation, Inc., {% acl_end %} {% endfor %}
+ + {% if jobs_list.paginator %} + {% include "pagination.html" with list=jobs_list %} + {% endif %}