fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merge branch 'production'
[wolnelektury.git]
/
wolnelektury
/
templates
/
pagination
/
pagination.html
diff --git
a/wolnelektury/templates/pagination/pagination.html
b/wolnelektury/templates/pagination/pagination.html
index
36c297b
..
7489d4a
100644
(file)
--- a/
wolnelektury/templates/pagination/pagination.html
+++ b/
wolnelektury/templates/pagination/pagination.html
@@
-1,9
+1,10
@@
+{% load i18n %}
{% if is_paginated %}
<div class="pagination">
{% if page_obj.has_previous %}
{% if is_paginated %}
<div class="pagination">
{% if page_obj.has_previous %}
- <a href="?page={{ page_obj.previous_page_number }}{{ getvars }}" class="prev">‹‹
poprzedni
</a>
+ <a href="?page={{ page_obj.previous_page_number }}{{ getvars }}" class="prev">‹‹
{% trans "previous" %}
</a>
{% else %}
{% else %}
- <span class="disabled prev">‹‹
poprzedni
</span>
+ <span class="disabled prev">‹‹
{% trans "previous" %}
</span>
{% endif %}
{% for page in pages %}
{% if page %}
{% endif %}
{% for page in pages %}
{% if page %}
@@
-17,9
+18,9
@@
{% endif %}
{% endfor %}
{% if page_obj.has_next %}
{% endif %}
{% endfor %}
{% if page_obj.has_next %}
- <a href="?page={{ page_obj.next_page_number }}{{ getvars }}" class="next">
następny
››</a>
+ <a href="?page={{ page_obj.next_page_number }}{{ getvars }}" class="next">
{% trans "next" %}
››</a>
{% else %}
{% else %}
- <span class="disabled next">
następny
››</span>
+ <span class="disabled next">
{% trans "next" %}
››</span>
{% endif %}
</div>
{% endif %}
{% endif %}
</div>
{% endif %}