Files
penracourses/templates/exam_clone_form.html
2024-12-16 18:20:23 +00:00

28 lines
661 B
HTML

{% extends view.model.get_app_name|add:"/exams.html" %}
{% block js %}
{{ form.media }}
{% endblock %}
{% block navigation %}
{{ block.super }}
{% include exam.get_link_headers %}
{% endblock navigation %}
{% block content %}
<h2>Cloning Exam: {{exam}}</h2>
<p>
This will create a new exam with the same settings, authors, questions and answers as the original exam. <br/>
Candidate groups and candidates will not be cloned.
</p>
<form action="" method="post">
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<input type="submit" value="Submit">
</form>
{% endblock %}