Add an option to edit the author of cases/collections

This commit is contained in:
Ross
2024-02-27 21:57:15 +00:00
parent 444ff0e983
commit 3ab40304a3
6 changed files with 50 additions and 3 deletions
+19
View File
@@ -0,0 +1,19 @@
{% extends "base.html" %}
{% block js %}
{{ form.media }}
{% endblock %}
{% block content %}
<h2>Edit Authors</h2>
<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 %}