Allow uploading images (#13)

Adds an optional field for the post image.

Fixes #12

Co-authored-by: clfreville2 <clement.freville2@etu.uca.fr>
Reviewed-on: https://codefirst.iut.uca.fr/git/clement.freville2/herbarium/pulls/13
Reviewed-by: Bastien OLLIER <bastien.ollier@noreply.codefirst.iut.uca.fr>
This commit is contained in:
2024-06-12 09:05:30 +02:00
parent 8859cd0000
commit 6a6a135891
11 changed files with 280 additions and 2 deletions

View File

@@ -31,6 +31,12 @@
<th>Altitude</th>
<td>{{ post.altitude }}</td>
</tr>
{% if post.image %}
<tr>
<th>Image</th>
<td><img src="{{ vich_uploader_asset(post, 'imageFile') }}" class="img-thumbnail" width="200" alt=""></td>
</tr>
{% endif %}
<tr>
<th>Commentary</th>
<td>{{ post.commentary }}</td>