{% load i18n %}
{% for reg in registrations %}
{% blocktrans with participant=reg.participant.full_name %}{{ participant }} already registered{% endblocktrans %}
{% endfor %}
{% if subject.registration_allowed %}
{% trans 'register' %}
{% else %}
{% trans 'Registering is currently not allowed.' %}
{% if subject.full %}{% trans 'The capacity is full.' %}{% endif %}
{% endif %}