Bugfix: stray anker name in pagination
This commit is contained in:
parent
34e845d14d
commit
558033e67e
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
{% load static %}
|
{% load static %}
|
||||||
|
|
||||||
<div class="pagination" id="paginator_top">
|
<div class="pagination" id="{{ id }}">
|
||||||
{% if paginator.has_previous %}
|
{% if paginator.has_previous %}
|
||||||
<a href="{{ url }}?{{ param }}_page=1#{{ id }}"><img src="{% static 'inventory/img/first.svg' %}" class="icon" title="First page"></a>
|
<a href="{{ url }}?{{ param }}_page=1#{{ id }}"><img src="{% static 'inventory/img/first.svg' %}" class="icon" title="First page"></a>
|
||||||
<a href="{{ url }}?{{ param }}_page={{ paginator.previous_page_number }}#{{ id }}"><img src="{% static 'inventory/img/previous.svg' %}" class="icon" title="Previous page"></a>
|
<a href="{{ url }}?{{ param }}_page={{ paginator.previous_page_number }}#{{ id }}"><img src="{% static 'inventory/img/previous.svg' %}" class="icon" title="Previous page"></a>
|
||||||
|
|
Loading…
Reference in a new issue