{% load i18n %} {% load humanize %} {% load cradmin_tags %} {% if show_info_box %}
{% trans 'There are no students on the semester' %}
{% elif candidates_count == 0 %}{% trans 'There are no students on the assignment' %}
{% elif relatedexaminers_count == 0 %}{% trans 'There are no examiners on the semester' %}
{% elif examiners_count == 0 %}{% trans 'There are no examiners on the assignment' %}
{% elif not assignment.is_published %}{% trans 'Everything looks good, ready to publish' %}
{% elif relatedstudents_count > candidates_count %}
{% trans 'There are still students who are on the semester, but not on the assignment' %}
{% elif relatedexaminers_count > examiners_count %}{% trans 'There are still examiners who are on the semester, but not on the assignment' %}
{% endif %}