mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-31 05:05:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			336 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			336 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% load qr_code %}
 | |
| 
 | |
| <div class='container' style='width: 80%;'>
 | |
|     {% if qr_data %}
 | |
|     <div class='qr-container'>
 | |
|         <img class='qr-code' src="{% qr_url_from_text qr_data size='m' image_format='png' error_correction='q' %}" alt="QR Code">
 | |
|     </div>
 | |
|     {% else %}
 | |
|     <b>Error:</b><br>
 | |
|     {{ error_msg }}
 | |
|     {% endif %}
 | |
| </div> |