19 lines
		
	
	
	
		
			713 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			19 lines
		
	
	
	
		
			713 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 
								 | 
							
								{% load  thumbnail %}
							 | 
						||
| 
								 | 
							
								<div id="dg-gallery-{{gallery.name}}" class="carousel slide">
							 | 
						||
| 
								 | 
							
								  <!-- Indicators --><!-- Wrapper for slides -->
							 | 
						||
| 
								 | 
							
								  <div class="carousel-inner">
							 | 
						||
| 
								 | 
							
								  {% for image in gallery.dgpicture_set.all %}
							 | 
						||
| 
								 | 
							
								    <div class="item {% if forloop.first %} active {% endif %} ">
							 | 
						||
| 
								 | 
							
								      <img class="img-responsive img-full"  src="{{ image.image.url }}"  alt="{{ image.description  }}">
							 | 
						||
| 
								 | 
							
								    </div>
							 | 
						||
| 
								 | 
							
								  {% endfor  %}
							 | 
						||
| 
								 | 
							
								  </div>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  <!-- Controls -->
							 | 
						||
| 
								 | 
							
								  <a class="left carousel-control" href="#dg-gallery-{{gallery.name}}" data-slide="prev">
							 | 
						||
| 
								 | 
							
								    <span class="icon-prev"></span>
							 | 
						||
| 
								 | 
							
								  </a>
							 | 
						||
| 
								 | 
							
								  <a class="right carousel-control" href="#dg-gallery-{{gallery.name}}" data-slide="next">
							 | 
						||
| 
								 | 
							
								    <span class="icon-next"></span>
							 | 
						||
| 
								 | 
							
								  </a>
							 | 
						||
| 
								 | 
							
								</div>
							 |