{% extends "admin.html" %} {% load url from future %} {% block headtitle %}Exam Applcations - {% endblock %} {% block exam_applications_active %} active {% endblock %} {% block content %}

Enabled Forms

{% if enabled_exam_forms %} {% for exam_form in enabled_exam_forms %} {% endfor %}
Name URL
{{ exam_form }} {% url 'exam_application' exam_form.slug %} Manage Applicants ({{ exam_form.get_applicants.count }}) Manage Modalities
{% else %}

There are no enabled Exam Forms.

{% endif %} {% if disabled_exam_forms %}

Disabled Forms

{% for exam_form in disabled_exam_forms %} {% endfor %}
Name URL
{{ exam_form }} Manage Applicants (0) Manage Modalities
{% endif %}
{% endblock %}