Files
penracourses/rapids/templates/rapids/exam_form.html
T
2022-05-31 23:40:50 +01:00

18 lines
326 B
HTML
Executable File

{% extends "rapids/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 %}