fix
[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="?{{ get_dict }}"
6         {% else %}
7             href="{{ url }}"
8         {% endif %}
9     >
10         {% if title %}
11             {{ title }}
12         {% else %}
13             {% trans "previous" %}
14         {% endif %}
15     </a>
16 {% endif %}