{% extends "fenixedu-learning-theme/base.html" %} {% block content %} {% set noEvaluations = adHocEvaluations is empty and projects is empty and publishedExams is empty and writtenTests is empty %} {% if noEvaluations %} {{ i18n('resources.FenixEduLearningResources', 'label.noEvaluations') }} {% else %} {% if comment is not empty %}

*) {{ comment }}

{% endif %} {% if adHocEvaluations is not empty %} {% for adHocEvaluation in adHocEvaluations %} {% endfor %}
{{ i18n('resources.ApplicationResources', 'label.adHocEvaluations') }} {{ i18n('resources.ApplicationResources', 'label.description') }}
{{ adHocEvaluation.name }} {{ adHocEvaluation.description }}
{% endif %} {% if projects is not empty %} {% for project in projects %} {% endfor %}
{{ i18n('resources.ApplicationResources', 'label.projects') }} {{ i18n('resources.ApplicationResources', 'label.beginning') }} {{ i18n('resources.ApplicationResources', 'label.end') }}
{{ i18n('resources.ApplicationResources', 'label.project') }}: {{ project.name }} {{ project.begin | date("dd/MM/yyyy HH:mm") }} {{ project.end | date("dd/MM/yyyy HH:mm") }}
{% endif %} {% if publishedExams is not empty or writtenTests is not empty %} {% for exam in publishedExams %} {% endfor %} {% for test in writtenTests %} {% endfor %}
{{ i18n('resources.ApplicationResources', 'label.testsAndExams') }} {{ i18n('resources.ApplicationResources', 'label.day') }} {{ i18n('resources.ApplicationResources', 'label.beginning') }} {{ i18n('resources.ApplicationResources', 'label.end') }} {{ i18n('resources.ApplicationResources', 'label.evaluation.enrolment.period') }} {{ i18n('resources.ApplicationResources', 'label.rooms') }}
{{ i18n('resources.ApplicationResources', 'label.exam') }}: {{ exam.season }} {{exam.comment is empty ? "" : "'*"}} {{ exam.dayDate | date("dd/MM/yyyy")}} {% if exam.beginningDate is not empty %} {{ exam.beginningDate | date("HH:mm") }} {% endif %} {% if exam.endDate is not empty %} {{ exam.endDate | date("HH:mm") }} {% endif %} {% if exam.enrollmentBeginDayDate is not empty %} {{ exam.enrollmentBeginDayDate | date("dd/MM/yyyy") }} {{ exam.enrollmentBeginTimeDate | date("HH:mm") }} - {{ exam.enrollmentEndDayDate | date("dd/MM/yyyy") }} {{ exam.enrollmentEndTimeDate | date("HH:mm") }} {% endif %} {% for roomOccupation in exam.writtenEvaluationSpaceOccupations %} {{ roomOccupation.room.name }} {% endfor %}
{{ i18n('resources.ApplicationResources', 'label.written.test') }}: {{ test.description }} {{ test.dayDate | date("dd/MM/yyyy")}} {% if test.beginningDate is not empty %} {{ test.beginningDate | date("HH:mm") }} {% endif %} {% if test.endDate is not empty %} {{ test.endDate | date("HH:mm") }} {% endif %} {% if test.enrollmentBeginDayDate is not empty %} {{ test.enrollmentBeginDayDate | date("dd/MM/yyyy") }} {{ test.enrollmentBeginTimeDate | date("HH:mm") }} - {{ test.enrollmentEndDayDate | date("dd/MM/yyyy") }} {{ test.enrollmentEndTimeDate | date("HH:mm") }} {% endif %} {% for roomOccupation in test.writtenEvaluationSpaceOccupations %} {{ roomOccupation.room.name }} {% endfor %}
{% endif %} {% endif %} {% endblock content %}