18 lines
370 B
HTML
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 %}
|
|
|