25 lines
694 B
HTML
Executable File
25 lines
694 B
HTML
Executable File
{% extends "generic/base.html" %}
|
|
<!-- {% load static from static %} -->
|
|
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% 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>Edit CID User {{ciduser.cid}} Exams</h2>
|
|
Use this form to edit a CID user exams (only do so if required - it shouldn't be).
|
|
<form action="" method="post" enctype="multipart/form-data" id="condition-form">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<input type="submit" class="submit-button" value="Submit" name="submit">
|
|
</form>
|
|
{% endblock %} |