{% extends 'staff_course_base.html' %} {% block content %} {{ block.super }}

{% if course_form.instance.id %} {{ course.name }} ({{ course.semester.name }}) {% else %} {% translate 'Create course' %} {% endif %}

{% csrf_token %}
{% include 'bootstrap_form.html' with form=course_form %}
{% if course_form.instance.id %}
{% translate 'Evaluations' %}
{% if course.evaluations.count > 0 %} {% else %} {% translate 'There are no evaluations for this course.' %} {% endif %}
{% endif %} {% if editable %}
{% endif %} {% include 'log/logentries.html' with logged_object=course %}
{% endblock %}