{% extends "fenixedu-learning-theme/base.html" %} {% block content %} {% set bundle = 'resources.PublicDegreeInformation' %} {% if degreeCurricularPlan is not empty %}

{{ degreeCurricularPlan.name }} {% if degreeCurricularPlan.initialDate is not empty and degreeCurricularPlan.endDate is not empty %} {{ i18n(bundle, 'public.degree.information.label.of') }} {{ degreeCurricularPlan.initialDate | date('yyyy') }} {{ i18n(bundle, 'public.degree.information.label.to') }} {{ degreeCurricularPlan.endDate | date('yyyy')}} {% elseif degreeCurricularPlan.initialDate is not empty and degreeCurricularPlan.endDate is empty %} {{ i18n(bundle, 'public.degree.information.label.since') }} {{ degreeCurricularPlan.initialDate | date("yyyy") }} {% endif %}

{% if degreeCurricularPlan.DescriptionI18N is not empty %}

{{ degreeCurricularPlan.DescriptionI18N.content | raw }}

{% else %}

{{ i18n(bundle, 'not.available') }}

{% endif %} {% endif %} {% endblock %}