mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2026-05-27 20:11:39 +00:00
8 lines
216 B
Django/Jinja
8 lines
216 B
Django/Jinja
{% macro pagination(sorted_watches, total_per_page, current_page) %}
|
|
{{ sorted_watches|length }}
|
|
|
|
{% for row in sorted_watches|batch(total_per_page, ' ') %}
|
|
{{ loop.index}}
|
|
{% endfor %}
|
|
{% endmacro %}
|