18 lines
398 B
HTML
Raw Normal View History

2023-01-05 22:05:26 +01:00
{% extends "base.html" %}
2022-12-31 14:18:27 +01:00
{% block title %}{{ title }}{% endblock title %}
{% block content %}
2023-02-18 22:36:26 +01:00
<form method="post" enctype="multipart/form-data">
<table class="mx-auto">
2023-01-05 22:05:26 +01:00
{% csrf_token %}
2022-12-31 14:18:27 +01:00
2023-02-18 22:36:26 +01:00
{{ form.as_table }}
<tr>
<td></td>
2023-02-18 22:36:26 +01:00
<td><input type="submit" value="Submit"/></td>
</tr>
</table>
2023-01-05 22:05:26 +01:00
</form>
{% endblock content %}