|
|
@ -5,7 +5,7 @@
|
|
|
|
{% for image in images %}
|
|
|
|
{% for image in images %}
|
|
|
|
<img src="{{ image|replace('./', '/') }}">
|
|
|
|
<img src="{{ image|replace('./', '/') }}">
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
<form action="/upload2/{{image}}" method="POST" enctype="multipart/form-data">
|
|
|
|
<form action="{{ url_for('upload2_file', image=image) }}" method="POST" enctype="multipart/form-data">
|
|
|
|
<label for="tile">Choose an image to upload:</label>
|
|
|
|
<label for="tile">Choose an image to upload:</label>
|
|
|
|
<input type="file"
|
|
|
|
<input type="file"
|
|
|
|
id="tile" name="tile" required>
|
|
|
|
id="tile" name="tile" required>
|
|
|
|