{% load i18n %} {% load humanize %} {% load cradmin_tags %} {% if show_info_box %}
{% if relatedstudents_count == 0 %}

{% trans 'There are no students on the semester' %}

{% trans 'Add students' %}

{% elif candidates_count == 0 %}

{% trans 'There are no students on the assignment' %}

{% trans 'Add students' %}

{% elif relatedexaminers_count == 0 %}

{% trans 'There are no examiners on the semester' %}

{% trans 'Add examiners' %}

{% elif examiners_count == 0 %}

{% trans 'There are no examiners on the assignment' %}

{% trans 'Add examiners' %}

{% elif not assignment.is_published %}

{% trans 'Everything looks good, ready to publish' %}

{% csrf_token %}

{% elif relatedstudents_count > candidates_count %}

{% trans 'There are still students who are on the semester, but not on the assignment' %}

{% trans 'Add students' %}

{% elif relatedexaminers_count > examiners_count %}

{% trans 'There are still examiners who are on the semester, but not on the assignment' %}

{% trans 'Add examiners' %}

{% endif %}
{% endif %}