10 lines
232 B
HTML
10 lines
232 B
HTML
|
{% extends '../global.html' %}
|
||
|
|
||
|
{% block content %}
|
||
|
<form method="POST" enctype="multipart/form-data">
|
||
|
{% csrf_token %}
|
||
|
{{ form }}
|
||
|
<button type="submit">Upload</button>
|
||
|
</form>
|
||
|
{% endblock content %}
|