fnp
/
fnpdjango.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
928011f92896aa615c2e4a8d5f3a4cd7dcc6af7b
[fnpdjango.git]
/
fnpdjango
/
templates
/
fnpdjango
/
prevnext
/
next.html
1
{% if number or url %}
2
{% load i18n %}
3
<a class="next_page"
4
{% if number %}
5
href="?page={{ number }}"
6
{% else %}
7
href="{{ url }}"
8
{% endif %}
9
>
10
{% if title %}
11
{{ title }}
12
{% else %}
13
{% trans "next" %}
14
{% endif %}
15
</a>
16
{% endif %}