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

{% block title %}{% blocktrans with school_year=request.school_year %}Registrations in school year {{ school_year }}{% endblocktrans %}{% endblock %}

{% static_placeholder "registrations" %} {% if courseregistrations.count or eventregistrations.count or orderableregistrations.count %} {% for reg in courseregistrations %}{% include 'leprikon/registration_preview.html' %}{% endfor %} {% for reg in eventregistrations %}{% include 'leprikon/registration_preview.html' %}{% endfor %} {% for reg in orderableregistrations %}{% include 'leprikon/registration_preview.html' %}{% endfor %} {% else %}

{% blocktrans with school_year=request.school_year %}You have no registrations in school year {{ school_year }}.{% endblocktrans %}

{% endif %} {% endblock %}