NDOJ/templates/test_formatter/test_formatter.html

12 lines
266 B
HTML
Raw Normal View History

2024-01-08 18:27:20 +00:00
{% extends 'base.html' %}
{% block body %}
2024-01-08 19:06:18 +00:00
<center>
<form method="post" enctype="multipart/form-data">
{% csrf_token %}
{{ form }}
<button type="submit" style="margin-top: 2em">{{_('Upload')}}</button>
</form>
</center>
2024-01-08 18:27:20 +00:00
{% endblock %}