{% extends 'course/view.html' %} {% load static i18n permission_tags professor_access django_bootstrap_breadcrumbs %} {% block javascript %} {% endblock %} {% block breadcrumbs %} {{ block.super }} {% breadcrumb subject 'course:view_subject' subject.slug %} {% endblock %} {% block content %}
{% trans "Professor" %}: {% for professor in subject.professors.all %}{% if not forloop.first %},{% endif %} {{professor}}{% if forloop.last %}.{% endif %}{% endfor %}
{% trans "Description" %}: {{subject.description|safe}}
{% trans "Beginning" %}: {{subject.init_date}}
{% trans "End" %}: {{subject.end_date}}