{% if page_obj.has_previous %}
{% trans 'previous' %}
{% endif %}
{% blocktrans with page_obj.number as page and page_obj.paginator.num_pages as num_pages %}
Page {{ page }} of {{ num_pages }}
{% endblocktrans %}
{% if page_obj.has_next %}
{% trans 'next' %}
{% endif %}