43 lines
		
	
	
		
			782 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			782 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'up_squelette.html' %}
 | 
						|
 | 
						|
 | 
						|
{% block main %}
 | 
						|
 | 
						|
 | 
						|
 | 
						|
<br />
 | 
						|
 | 
						|
<div class="center row">
 | 
						|
{% if fichiers %}
 | 
						|
 | 
						|
 | 
						|
   
 | 
						|
{% for image in fichiers %}
 | 
						|
<div class="column">
 | 
						|
  <a href="/myfiles/images/{{ image }}" class="glightbox">
 | 
						|
    <img src="/myfiles/images/thumbnails/{{ image }}" class="img-rounded gallery" alt=""/>
 | 
						|
  </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>
 | 
						|
</div>
 | 
						|
 | 
						|
    {% endfor %}
 | 
						|
 | 
						|
 | 
						|
{% else %}
 | 
						|
 | 
						|
<h2> Il n'y a aucunes images dans votre gallerie </h2>
 | 
						|
       
 | 
						|
   
 | 
						|
    
 | 
						|
{% endif %}
 | 
						|
 | 
						|
 </div>
 | 
						|
    
 | 
						|
 | 
						|
 | 
						|
{% endblock %}
 |