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

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

{% trans 'Active Registrations' %}

{% for reg in event.active_registrations.all %} {% include 'leprikon/registration_details.html' %} {% empty %}

{% trans 'There are no active registrations for this event.' %}

{% endfor %}

{% trans 'Inactive Registrations' %}

{% for reg in event.inactive_registrations.all %} {% include 'leprikon/registration_details.html' %} {% empty %}

{% trans 'There are no inactive registrations for this event.' %}

{% endfor %} {% endblock %}