fnp
/
fnpdjango.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
88a656bd98d8a50e2a31cd2aa44c031104bb4e2a
[fnpdjango.git]
/
fnpdjango
/
templates
/
fnpdjango
/
prevnext
/
previous.html
1
{% if number or url %}
2
{% load i18n %}
3
<a class="previous_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 "previous" %}
14
{% endif %}
15
</a>
16
{% endif %}