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

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

{% trans 'Active Registrations' %}

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

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

{% endfor %}

{% trans 'Inactive Registrations' %}

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

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

{% endfor %} {% endblock %}