27 lines
698 B
HTML
Executable File
27 lines
698 B
HTML
Executable File
{% extends "atlas/base.html" %}
|
|
<!-- {% load static from static %} -->
|
|
|
|
{% block css %}
|
|
{% endblock %}
|
|
{% block js %}
|
|
<!--<script type="text/javascript" src="/admin/jsi18n/"></script>-->
|
|
{{form.media}}
|
|
|
|
<script type="text/javascript">
|
|
</script>
|
|
|
|
<!-- {{ form.media }} -->
|
|
{% endblock %}
|
|
{% block content %}
|
|
<h2>Add/Edit Examination</h2>
|
|
Use this form to create or edit a examination.
|
|
<form action="" method="post" enctype="multipart/form-data" id="examination-form">
|
|
{% csrf_token %}
|
|
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
<input type="submit" class="submit-button" value="Submit" name="submit">
|
|
</form>
|
|
{% endblock %}
|