Browse Source

Forgot the paginator in the MR !566.

fix_filter_access
grisel-davy 5 years ago
parent
commit
efc08d3f9a
  1. 9
      topologie/templates/topologie/aff_port_profile.html

9
topologie/templates/topologie/aff_port_profile.html

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

Loading…
Cancel
Save