19 lines
420 B
HTML
Raw Normal View History

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