Small changes to test_formatter

This commit is contained in:
cuom1999 2024-01-08 13:06:18 -06:00
parent d7080a4d1b
commit 2b84d62260
4 changed files with 14 additions and 15 deletions

View file

@ -1,11 +1,11 @@
{% extends 'base.html' %}
{% block body %}
<form method="post" enctype="multipart/form-data">
{% csrf_token %}
{{ form }}
<button type="submit">{{_('Upload')}}</button>
</form>
<center>
<form method="post" enctype="multipart/form-data">
{% csrf_token %}
{{ form }}
<button type="submit" style="margin-top: 2em">{{_('Upload')}}</button>
</form>
</center>
{% endblock %}