pywallter/templates/gallery.html

36 lines
596 B
HTML

{% extends 'up_squelette.html' %}
{% block main %}
<h3> Ma gallerie </h3>
{% if fichiers %}
<div class="gallery">
{% for image in fichiers %}
<div class="picture">
<a href="/myfiles/images/{{ image }}" class="glightbox">
<img src="/myfiles/images/thumbnails/{{ image }}" class="img-rounded gallery" alt=""/>
</a>
<a href="{{ url_for('mygallery.remove_privateImage', filename=image) }}"> <button class="danger trash"></button></a>
</div>
{% endfor %}
</div>
{% else %}
<h2> Il n'y a aucunes images dans votre gallerie </h2>
{% endif %}
</div>
{% endblock %}