8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-19 09:02:35 +00:00

Forgot the paginator in the MR !566.

This commit is contained in:
grisel-davy 2020-11-04 22:10:18 +01:00 committed by Gabriel Detraz
parent 3091dca729
commit 448463258e

View file

@ -25,6 +25,10 @@ with this program; if not, write to the Free Software Foundation, Inc.,
{% load logs_extra %}
{% if port_profile_list.paginator %}
{% include 'pagination.html' with list=port_profile_list %}
{% endif %}
{% for port_profile in port_profile_list %}
<div class="panel panel-default">
<div class="panel-heading">
@ -119,3 +123,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
</div>
</div>
{% endfor %}
{% if port_profile_list.paginator %}
{% include 'pagination.html' with list=port_profile_list %}
{% endif %}