Files

35 lines
835 B
HTML

{% extends object.get_base_template %}
{% block js %}
{{ form.media }}
{% endblock %}
{% block navigation %}
{{ block.super }}
{% include object.get_link_headers %}
{% endblock navigation %}
{% block content %}
<h2>Edit Authors</h2>
<div class="alert alert-info" role="alert">
<p>
Authors have <b>full access</b> to access and edit the exam/collection (<b>including the ability to add/remove other authors</b>).
</p>
<p>If you just want a user to be able to mark questions add them as a marker instead.</p>
</div>
<form action="" method="post">
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<input type="submit" value="Submit">
<a href="{{ object.get_absolute_url }}" class="btn btn-default">Cancel</a>
</form>
{% endblock %}