{% block title %}{% blocktrans with name=event.name %}Registrations for {{ event.subject_type.name_akuzativ }} {{ name }}{% endblocktrans %}{% endblock %}
{% trans 'Active Registrations' %}
{% for reg in event.all_approved_registrations %}
{% include 'leprikon/registration_details.html' with reg=reg.eventregistration %}
{% empty %}
{% trans 'There are no active registrations for this event.' %}
{% endfor %}
{% if event.all_unapproved_registrations %}
{% trans 'Unapproved Registrations' %}
{% for reg in event.all_unapproved_registrations %}
{% include 'leprikon/registration_details.html' with reg=reg.eventregistration %}
{% endfor %}
{% endif %}
{% if event.all_inactive_registrations %}
{% trans 'Inactive Registrations' %}
{% for reg in event.all_inactive_registrations %}
{% include 'leprikon/registration_details.html' with reg=reg.eventregistration %}
{% endfor %}
{% endif %}
{% endblock %}