2020-11-29 02:05:19 +01:00
|
|
|
{% extends 'up_squelette.html' %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block main %}
|
|
|
|
|
|
|
|
<div class="container theme-showcase" role="main">
|
|
|
|
|
|
|
|
<!--<div class="page-header">
|
|
|
|
<h1>Images uploadées :</h1>
|
|
|
|
</div>-->
|
|
|
|
|
|
|
|
<br />
|
|
|
|
|
|
|
|
{% if fichiers %}
|
|
|
|
|
|
|
|
|
2022-07-05 01:18:52 +02:00
|
|
|
<div id="gallery">
|
|
|
|
{% for image in fichiers %}
|
|
|
|
|
|
|
|
<img src="/myfiles/images/thumbnails/{{ image }}" class="img-rounded" alt=""/>
|
2020-11-29 02:05:19 +01:00
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|