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.
34 lines
905 B
34 lines
905 B
{% macro render_pagination(pagination) %} |
|
|
|
<div class="container"> |
|
<div class="row mb-5"> |
|
<div class="col-md-3"> |
|
<!-- unused for centering --> |
|
</div> |
|
<div class="col-md-6"> |
|
{% if pagination.has_prev %} |
|
<a href="{{ pagination.prev|url }}">« Previous</a> |
|
{% else %} |
|
« Previous |
|
{% endif %} |
|
| |
|
{% for page in range(1, pagination.pages + 1) %} |
|
{% if page != pagination.page %} |
|
<a href="{{ pagination.for_page(page)|url }}">{{ page }}</a> | |
|
{% else %} |
|
{{ pagination.page }} | |
|
{% endif %} |
|
|
|
{% endfor %} |
|
{% if pagination.has_next %} |
|
<a href="{{ pagination.next|url }}">Next »</a> |
|
{% else %} |
|
Next » |
|
{% endif %} |
|
</div> |
|
<div class="col-md-3"> |
|
<!-- unused for centering --> |
|
</div> |
|
</div> |
|
</div> |
|
{% endmacro %}
|
|
|