{% extends "courses/base_course.html" %} {% load cache gravatar i18n enrollment_tags media_contents usercourses %} {% block nav-course-overview %}class="active"{% endblock %} {% block extraheader %} {% endblock %} {% block content %}

{{ course.name }}

{% cache 3600 course_overview_main_info LANGUAGE_CODE course.id %}
{% if course.promotion_media_content_type and course.promotion_media_content_id %}
{% media_content_iframe_code course.promotion_media_content_type course.promotion_media_content_id height="349px" width="620px" allowfullscreen="1" controls="1" %}
{% endif %}

{% trans "Course summary" %}

{{ course.description|safe }}
{% if course.learning_goals %}

{% trans "Learning goals" %}

{{ course.learning_goals|safe }}
{% endif %} {% if course.requirements %}

{% trans "Recommended requirements" %}

{{ course.requirements|safe }}
{% endif %} {% if course.intended_audience %}

{% trans "Intended audience" %}

{{ course.intended_audience|safe }}
{% endif %}
{% endcache %}
{% if is_enrolled %}
{% trans "You are enrolled in this course" %} {% unenroll_button course %} {% clone_activity course user %}
{% else %} {% if user.is_authenticated %} {% enroll_button course %} {% else %} {% endif %} {% endif %} {% if course.certification_available %}
{% if user.is_authenticated %} {% if course.certification_banner %} {% if certification_alt %}{{ course.certification_alt }}{% else %}}{% trans {% else %} {% trans {% endif %} {% else %} {% blocktrans with site_name=site.name %}Register in {{ site_name }} to get a certification in this course{% endblocktrans %} {% endif %}
{% endif %} {% cache 3600 course_overview_secondary_info LANGUAGE_CODE course.id %}

{% trans "Teachers" %}

    {% for course_teacher in course_teachers %}
  • {% firstof course_teacher.teacher.get_full_name course_teacher.teacher.username %}
  • {% endfor %}

{% trans "Information" %}

{% trans "Course Code" %}
{{ course.slug }}
{% if course.start_date %}
{% trans "Classes Start" %}
{{ course.start_date|date:"d / M / Y" }}
{% endif %} {% if course.end_date %}
{% trans "Classes End" %}
{{ course.end_date|date:"d / M / Y" }}
{% endif %} {% if course.estimated_effort %}
{% trans "Estimated Effort" %}
{{ course.estimated_effort|safe }}
{% endif %} {% if course.static_page %}
{{ course.static_page.title }}
{% endif %} {% if use_old_calculus %}
{% trans "Evaluation criteria" %}
{% else %}
{% trans "Evaluation criteria" %}
{% endif %}
{% trans "My transcript" %}
{% if announcements %}

{% trans "Announcements" %} {% trans

{% for announcement in announcements %}
{{ announcement.datetime|date:"d / M / Y - H:i" }}
{{ announcement.title|truncatewords:8 }}
{% endfor %}
{% endif %}

{% trans "Syllabus" %}

    {% for unit in units %} {% if unit.status == 'l' %}
  • {{ unit.title }}
  • {% else %}
  • {{ unit.title }}
  • {% endif %} {% endfor %}
{% if course.categories.all %}

{% trans "Categories" %}

{% endif %}

{% trans "Share" %}

  • Share in Twitter
  • Share in Facebook
  • Share in Google Plus
  • Share in LinkedIn
  • Share in Reddit
  • Share through email
{% endcache %}
{% endblock %}