13 lines
299 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-01-05 22:05:26 +01:00
<form method="post" enctype="multipart/form-data" class="mx-auto">
{% csrf_token %}
2022-12-31 14:18:27 +01:00
2023-01-05 22:05:26 +01:00
{{ form.as_p }}
2022-12-31 14:18:27 +01:00
2023-01-05 22:05:26 +01:00
<input type="submit" value="Submit"/>
</form>
2022-12-31 14:18:27 +01:00
{% endblock content %}