add create exam form to rapids

This commit is contained in:
Ross
2021-04-04 20:07:51 +01:00
parent 845ab6c377
commit 04596da2e4
7 changed files with 33 additions and 9 deletions
+12
View File
@@ -0,0 +1,12 @@
{% extends "rapids/base.html" %}
{% block content %}
<h2>Add Exam</h2>
<form action="" method="post">
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<input type="submit" value="Submit">
</form>
{% endblock %}