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

{% translate 'Create copy of course' %}

{% csrf_token %}
{% include 'bootstrap_form.html' with form=course_form %}
{% translate 'Evaluations that will be copied' %}
{% if course.evaluations.count > 0 %}
    {% for evaluation in evaluations %}
  • {{ evaluation.full_name }}
  • {% endfor %}
{% else %} {% translate 'There are no evaluations for this course.' %} {% endif %}
{% endblock %} {% block additional_javascript %} {% include 'bootstrap_datetimepicker.html' %} {% endblock %}