{% extends "fenixedu-learning-theme/base.html" %} {% block content %}
{% for info in competenceCourseBeans %} {% if info.objectives is not empty and info.objectives.content is not empty %} {% for curricularCourse in info.curricularCourses %} {% set degree = curricularCourse.degreeCurricularPlan.degree %}

{{ degree.degreeType.name.content }} {{ i18n('resources.ApplicationResources', 'label.in') }} {{ degree.nameI18N.content }}

{% endfor %}

{{ info.objectives.content }}

{% endif %} {% endfor %} {% for entry in entries(curriculumByCurricularCourse) %} {% set curricularCourse = entry.key %} {% set curriculum = entry.value %} {% set degree = curricularCourse.degreeCurricularPlan.degree %}

{{ degree.degreeType.name.content }} {{ i18n('resources.ApplicationResources', 'label.in') }} {{ degree.nameI18N.content }}

{% if curriculum is not empty %} {% if curriculum.generalObjectivesI18N is not empty %}
{{ i18n('resources.ApplicationResources', 'label.generalObjectives') }}

{{ curriculum.generalObjectivesI18N }}

{% endif %} {% if curriculum.operacionalObjectives is not empty %}
{{ i18n('resources.ApplicationResources', 'label.operacionalObjectives') }}

{{ curriculum.operacionalObjectivesI18N }}

{% endif %} {% else %}

{{ i18n('resources.ApplicationResources', 'message.objectives.not.defined') }}

{% endif %} {% endfor %}
{% endblock content %}