This commit is contained in:
Ross
2022-05-31 23:40:50 +01:00
parent 4969723de9
commit 6d3cdedb95
8 changed files with 228 additions and 60 deletions
+9 -9
View File
@@ -1,4 +1,4 @@
{% extends "rapids/exams.html" %}
{% extends "rapids/base.html" %}
{% block js %}
{{ form.media }}
@@ -6,12 +6,12 @@
{% block content %}
<h2>Add Exam</h2>
<form action="" method="post">
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<input type="submit" value="Submit">
</form>
<h2>Add Exam</h2>
<form action="" method="post">
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<input type="submit" value="Submit">
</form>
{% endblock %}