17 lines
294 B
HTML
Executable File
17 lines
294 B
HTML
Executable File
{% extends "physics/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 %}
|