mirror of https://github.com/r4sas/py-i2phosts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
857 B
28 lines
857 B
<div class="pager"> |
|
{% if has_previous %} |
|
<span class="page"> |
|
<a href="?page={{ previous }}">< Prev</a> |
|
</span> |
|
{% endif %} |
|
|
|
{% if show_first %} |
|
<span class="page"><a href="?page=1">1</a></span> |
|
<span class="ellipsis">...</span> |
|
{% endif %} |
|
{% for linkpage in page_numbers %} |
|
{% ifequal linkpage page %} |
|
<span class="current">{{ page }}</span> |
|
{% else %} |
|
<span class="page"><a href="?page={{ linkpage }}" |
|
>{{ linkpage }}</a></span> |
|
{% endifequal %} |
|
{% endfor %} |
|
{% if show_last %} |
|
<span class="ellipsis">...</span> |
|
<span class="page"><a href="?page=last">{{ pages }}</a></span> |
|
{% endif %} |
|
{% if has_next %} |
|
<span class="page"><a href="?page={{ next }}">Next ></a></span> |
|
{% endif %} |
|
{{ paginator.count }} total |
|
</div>
|
|
|