Files
penracourses/templates/exam_create_form.html
T
Ross 45100f27b0 .
2022-06-07 21:32:49 +01:00

19 lines
345 B
HTML

{% extends view.model.app_name|add:"/base.html" %}
{% block js %}
{{ form.media }}
{% endblock %}
{% block content %}
<h2>Add Exam</h2>
<form action="" method="post">
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<input type="submit" value="Submit">
</form>
{% endblock %}