Skip to content
Snippets Groups Projects
Commit 0629e150 authored by Pieter Frenssen's avatar Pieter Frenssen Committed by Alberto Siles
Browse files

Issue #3158572 by pfrenssen: Bootstrap pagination styling not applied to ellipsis

parent c4faaeeb
Branches 2.1.x
Tags 2.1.0
No related merge requests found
...@@ -53,7 +53,7 @@ ...@@ -53,7 +53,7 @@
{% endif %} {% endif %}
{# Add an ellipsis if there are further previous pages. #} {# Add an ellipsis if there are further previous pages. #}
{% if ellipses.previous %} {% if ellipses.previous %}
<li class="page-item" role="presentation">&hellip;</li> <li class="page-item" role="presentation"><span class="page-link">&hellip;</span></li>
{% endif %} {% endif %}
{# Now generate the actual pager piece. #} {# Now generate the actual pager piece. #}
{% for key, item in items.pages %} {% for key, item in items.pages %}
...@@ -71,7 +71,7 @@ ...@@ -71,7 +71,7 @@
{% endfor %} {% endfor %}
{# Add an ellipsis if there are further next pages. #} {# Add an ellipsis if there are further next pages. #}
{% if ellipses.next %} {% if ellipses.next %}
<li class="page-item" role="presentation">&hellip;</li> <li class="page-item" role="presentation"><span class="page-link">&hellip;</span></li>
{% endif %} {% endif %}
{# Print next item if we are not on the last page. #} {# Print next item if we are not on the last page. #}
{% if items.next %} {% if items.next %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment