fnp
/
django-pagination.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
add hashtag to next/prev links
[django-pagination.git]
/
pagination
/
templates
/
pagination
/
pagination.html
diff --git
a/pagination/templates/pagination/pagination.html
b/pagination/templates/pagination/pagination.html
index
3799314
..
fe566a8
100644
(file)
--- a/
pagination/templates/pagination/pagination.html
+++ b/
pagination/templates/pagination/pagination.html
@@
-1,25
+1,26
@@
{% if is_paginated %}
{% if is_paginated %}
+{% load i18n %}
<div class="pagination">
{% if page_obj.has_previous %}
<div class="pagination">
{% if page_obj.has_previous %}
- <a href="?page={{ page_obj.previous_page_number }}{{ getvars }}
" class="prev">‹‹ previous
</a>
+ <a href="?page={{ page_obj.previous_page_number }}{{ getvars }}
{{ hashtag }}" class="prev">‹‹ {% trans "previous" %}
</a>
{% else %}
{% else %}
- <span class="disabled prev">‹‹
previous
</span>
+ <span class="disabled prev">‹‹
{% trans "previous" %}
</span>
{% endif %}
{% for page in pages %}
{% if page %}
{% ifequal page page_obj.number %}
<span class="current page">{{ page }}</span>
{% else %}
{% endif %}
{% for page in pages %}
{% if page %}
{% ifequal page page_obj.number %}
<span class="current page">{{ page }}</span>
{% else %}
- <a href="?page={{ page }}{{ getvars }}" class="page">{{ page }}</a>
+ <a href="?page={{ page }}{{ getvars }}
{{ hashtag }}
" class="page">{{ page }}</a>
{% endifequal %}
{% else %}
...
{% endif %}
{% endfor %}
{% if page_obj.has_next %}
{% endifequal %}
{% else %}
...
{% endif %}
{% endfor %}
{% if page_obj.has_next %}
- <a href="?page={{ page_obj.next_page_number }}{{ getvars }}
" class="next">next
››</a>
+ <a href="?page={{ page_obj.next_page_number }}{{ getvars }}
{{ hashtag }}" class="next">{% trans "next" %}
››</a>
{% else %}
{% else %}
- <span class="disabled next">
next
››</span>
+ <span class="disabled next">
{% trans "next" %}
››</span>
{% endif %}
</div>
{% endif %}
{% endif %}
</div>
{% endif %}