changedetection.io/changedetectionio/templates/_pagination.jinja

8 wiersze
216 B
Plaintext
Czysty Zwykły widok Historia

2022-08-16 08:45:36 +00:00
{% 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 %}