Parent: [1cf49e] (diff)

Child: [46974a] (diff)

Download this file

page_size.html    20 lines (19 with data), 614 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
<form method="get">
{% for k,v in widget.url_params.iteritems() %}
<input type="hidden" name="{{k}}" value="{{v}}"/>
{% endfor %}
{% if limit %}
<p class="light">Showing
{% if limit and count|int>limit|int %}
<select class="results_per_page" name="limit">
{% for per_page in [25, 50, 100, 250] %}
<option {% if per_page == limit|int %}selected="selected"{% endif %}
value="{{per_page}}">{{per_page}}</option>
{% endfor %}
</select>
{% else %}
{{count}}
{% endif %}
result{% if limit|int != 1 %}s{% endif %} of {{count}} </p>
{% endif %}
</form>