Remove pagination images and replace them with unicode characters
This commit is contained in:
parent
de73724066
commit
4ad9ac5ae0
Binary file not shown.
Before Width: | Height: | Size: 252 B |
Binary file not shown.
Before Width: | Height: | Size: 249 B |
@ -36,15 +36,13 @@
|
||||
{% set prev_url = pagination.get_page_url_explicit(
|
||||
base_url, get_params,
|
||||
pagination.page - 1) %}
|
||||
<a href="{{ prev_url }}"><img class="pagination_arrow" src="{{ request.staticdirect('/images/pagination_left.png') }}" alt="Previous page" /></a>
|
||||
<a href="{{ prev_url }}">{% trans %}Newer{% endtrans %}</a>
|
||||
<a href="{{ prev_url }}">{% trans %}← Newer{% endtrans %}</a>
|
||||
{% endif %}
|
||||
{% if pagination.has_next %}
|
||||
{% set next_url = pagination.get_page_url_explicit(
|
||||
base_url, get_params,
|
||||
pagination.page + 1) %}
|
||||
<a href="{{ next_url }}">{% trans %}Older{% endtrans %}</a>
|
||||
<a href="{{ next_url }}"><img class="pagination_arrow" src="{{ request.staticdirect('/images/pagination_right.png') }}" alt="Next page" /></a>
|
||||
<a href="{{ next_url }}">{% trans %}Older →{% endtrans %}</a>
|
||||
{% endif %}
|
||||
<br />
|
||||
{% trans %}Go to page:{% endtrans %}
|
||||
|
Loading…
x
Reference in New Issue
Block a user