mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-31 13:15:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			457 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			457 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% load static %}
 | |
| 
 | |
| <div class='media-left' style='float: left;'>
 | |
|     {% if hover %}
 | |
|     <a class='hover-icon'>
 | |
|     {% endif %}
 | |
|         <img class='hover-img-thumb' {% if image %}src='{{ image.url }}'{% else %}src='{% static "img/blank_image.png" %}'{% endif %}>
 | |
|     {% if hover and image %}
 | |
|         <img class='hover-img-large' {% if image %}src='{{ image.url }}'{% else %}src='{% static "img/blank_image.png" %}'{% endif %}>
 | |
|     </a>
 | |
|     {% endif %}
 | |
| </div> |