31 lines
413 B
HTML
31 lines
413 B
HTML
{% 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 %}
|
|
|
|
|
|
<div id="gallery">
|
|
{% for image in fichiers %}
|
|
|
|
<img src="/myfiles/images/thumbnails/{{ image }}" class="img-rounded" alt=""/>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|