Files
penracourses/templates/exam_create_form.html
2024-08-18 22:29:48 +01:00

18 lines
370 B
HTML

{% extends view.model.app_name|add:"/base.html" %}
{% load crispy_forms_tags %}
{% block js %}
{{ form.media }}
{% endblock %}
{% block content %}
<h2>Add Exam</h2>
Create a new exam. Questions and candidates can be added later.
<form action="" method="post">
{% csrf_token %}
{% crispy form form.helper %}
</form>
{% endblock %}