Correct login landing page
This commit is contained in:
@@ -3,39 +3,32 @@
|
||||
|
||||
{% block main %}
|
||||
|
||||
<h3> Ma gallerie </h3>
|
||||
|
||||
|
||||
<br />
|
||||
|
||||
<div class="center row">
|
||||
{% if fichiers %}
|
||||
|
||||
|
||||
|
||||
<div class="gallery">
|
||||
{% for image in fichiers %}
|
||||
<div class="column">
|
||||
|
||||
<div class="picture">
|
||||
<a href="/myfiles/images/{{ image }}" class="glightbox">
|
||||
<img src="/myfiles/images/thumbnails/{{ image }}" class="img-rounded gallery" alt=""/>
|
||||
</a>
|
||||
</a>
|
||||
|
||||
<div class="control">
|
||||
<a href="{{ url_for('mygallery.remove_privateImage', filename=image) }}"> <button class="btn btn-danger "><span class="glyphicon glyphicon-trash"></span> </button></a>
|
||||
<!-- <button class="btn btn-success "><span class="glyphicon glyphicon-globe"></span></button> -->
|
||||
</div>
|
||||
<a href="{{ url_for('mygallery.remove_privateImage', filename=image) }}"> <button class="danger trash"></button></a>
|
||||
</div>
|
||||
|
||||
{% endfor %}
|
||||
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
{% else %}
|
||||
|
||||
<h2> Il n'y a aucunes images dans votre gallerie </h2>
|
||||
|
||||
|
||||
|
||||
<h2> Il n'y a aucunes images dans votre gallerie </h2>
|
||||
|
||||
{% endif %}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user