{%macro table_pagination(start_at, page_count, total_count, base_uri, name)%} {%set ns = namespace(forward_uri=base_uri, back_uri=base_uri)%} {%set ns.forward_uri="brr"%}
{%if start_at > 0%} Previous {%endif%}
Displaying {{name}} {{start_at+1}} to {{start_at+page_count if start_at+page_count < total_count else total_count}} of {{total_count}}
{%if start_at + page_count < total_count%} Next {%endif%}
{%endmacro%}