{% extends "devilry_qualifiesforexam/base.django.html" %} {% load i18n %} {% load cradmin_legacy_tags %} {% block content %}

{% trans "Qualified for final exams" %}

{% if status.status == 'ready' %}

Status: {% trans 'Ready for export '%} ({% trans "Saved" %} {{ status.createtime }} {% trans "by" %} {{ status.user }})

{% else %} {% trans 'Not ready for export' %} {% endif %}
{{ num_students_qualify }}/{{ num_students }} {% trans "students qualify for final exam" %}
{# Show the retracted message if Status is notready #} {% if status.status == 'notready' %}

{% trans "Status retracted reason" %}:

{{ status.message }}

{% endif %} {% if required_assignments %}

{% trans "Required assignments" %}

{% cradmin_render_renderable required_assignments %}
{% endif %}

{# Add back button #} {{ block.super }} {# Adds template specific buttons #} {% if status.status == 'ready' %} {% trans "Retract" %} {% trans "print" %}

{% trans 'Order by' context 'qualifies-for-exam-order-by-lastname' %}:
{% endif %}

{% cradmin_render_renderable table %}
{% endblock content %} {% block end-of-body %} {% endblock end-of-body %}