{% comment %} Reusable pagination component. Requires: is_paginated, page_obj, paginator, request. {% endcomment %} {% load i18n %} {% if is_paginated %}
{% blocktrans with current=page_obj.number total=paginator.num_pages %} Page {{ current }} of {{ total }} {% endblocktrans %}
{% with q=request.GET.q f_field=request.GET.f_field f_op=request.GET.f_op f_value=request.GET.f_value %} {% endwith %}
{% endif %}