blob: 362b7cb3ae5492ef2bfc7fd6a64ed17355bbe2b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<div class="pkglist-stats">
{% if is_paginated %}
<p>{{paginator.count}} packages found.
Page {{page_obj.number}} of {{paginator.num_pages}}.</p>
<div class="pkglist-nav">
<span class="prev">
{% if page_obj.has_previous %}
<a href="/packages/{{page_obj.previous_page_number}}/?{{current_query}}"
title="Go to previous page">< Prev</a>
{% else %}
< Prev
{% endif %}
</span>
<span class="next">
{% if page_obj.has_next %}
<a href="/packages/{{page_obj.next_page_number}}/?{{current_query}}"
title="Go to next page">Next ></a>
{% else %}
Next >
{% endif %}
</span>
</div>
{% else %}
<p>{{ package_list.count }} packages found.</p>
{% endif %}
</div>
|