{% macro render_pagination(page, total, per_page, url_for_page) %} {% set total_pages = ((total - 1) // per_page + 1) if total > 0 else 1 %} {% endmacro %}