pywallter/templates/gallery.html

31 lines
413 B
HTML
Raw Permalink Normal View History

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 %}