Lukáš Kucharczyk 33939f631c
All checks were successful
continuous-integration/drone/push Build is passing
Fix form styling
2023-02-18 22:36:26 +01:00

16 lines
375 B
HTML

{% extends "base.html" %}
{% block title %}{{ title }}{% endblock title %}
{% block content %}
<form method="post" enctype="multipart/form-data">
<table class="mx-auto">
{% csrf_token %}
{{ form.as_table }}
<tr>
<td><input type="submit" value="Submit"/></td>
</tr>
</table>
</form>
{% endblock content %}