mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-31 05:05:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			343 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			343 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% load barcode %}
 | |
| {% load i18n %}
 | |
| 
 | |
| <div class='container' style='width: 80%;'>
 | |
|     {% if qr_data %}
 | |
|     <div class='d-flex justify-content-center'>
 | |
|         <img src="{% qrcode qr_data %}">
 | |
|     </div>
 | |
|     {% else %}
 | |
|     <div class='alert alert-block alert-warning'>
 | |
|         {% trans "QR data not provided" %}
 | |
|     </div>
 | |
|     {% endif %}
 | |
| </div>
 |