#3 Setting up Views for Uploading and listing images

This commit is contained in:
2022-12-18 09:23:36 +01:00
parent 4deeb3d773
commit 17647bf4b7
6 changed files with 143 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
{% extends '../global.html' %}
{% block content %}
<form method="POST" enctype="multipart/form-data">
{% csrf_token %}
{{ form }}
<button type="submit">Upload</button>
</form>
{% endblock content %}