{% load i18n %}
{% if participants.has_previous or participants.has_next %}
{% if participants.has_previous %}
<< {% trans 'previous' %}
{% endif %}
{% blocktrans with i=participants.number x=participants.paginator.num_pages %}Page {{ i }} of {{ x }}{% endblocktrans %}
{% if participants.has_next %}
{% trans 'next' %} >>
{% endif %}