{% extends 'leprikon/default.html' %} {% load i18n leprikon_tags %} {% block content %}

{% block title %}{% blocktrans with subject_type=event.subject_type.name_akuzativ name=event.name %}Registrations for {{ subject_type }} {{ name }}{% endblocktrans %}{% endblock %}

{% trans 'Active Registrations' %}

{% for reg in event.all_approved_registrations %} {% include 'leprikon/registration_details.html' with reg=reg.eventregistration %} {% empty %}

{% blocktrans with subject_type=event.subject_type.name_akuzativ %}There are no active registrations for this {{ subject_type }}.{% endblocktrans %}

{% 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 %}