{% extends 'course/index.html' %} {% load static i18n permission_tags custom_filters %} {% load django_bootstrap_breadcrumbs %} {% block style %} {% endblock style %} {% block javascript %} {% endblock %} {% block breadcrumbs %} {{ block.super }} {% breadcrumb course 'course:view' course.slug %} {% endblock %} {% block content %}

{{course.name}}

{% if user|has_role:'professor' or user|has_role:'system_admin' %} {% endif %}

{% trans 'Coordinator' %}: {{course.coordenator}}

{% trans 'Teacher' %}: {{course.professors.all.0}}

{% trans 'Description' %}: {{ course.objectivies |safe }}

{% trans 'Begin of Course Date' %}: {{course.init_date}}

{% trans 'End of Course Date' %}: {{course.end_date}}

{% for subject in subjects %}
{% if user|has_role:'professor' or user|has_role:'system_admin' %} {% endif %} {% if user|show_subject_subscribe:subject %} {% endif %}

{% trans "Professor" %}: {% for professor in subject.professors.all %}{% if not forloop.first %},{% endif %} {{professor}}{% if forloop.last %}.{% endif %}{% endfor %}

{% trans 'Category' %}: {{ subject.category }}

{% trans "Description" %}: {{subject.description | safe}}

{% trans "Begining" %}: {{subject.init_date}}

{% trans "End" %}: {{subject.end_date}}

{% endfor %} {% if user|has_role:'professor' and user in course.professors.all or user|has_role:'system_admin' %} {% endif %}