mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-11-03 22:55:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			325 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			325 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% load barcode %}
 | 
						|
{% load i18n %}
 | 
						|
 | 
						|
<div class='container' style='width: 80%;'>
 | 
						|
    {% if qr_data %}
 | 
						|
    <div class='qr-container'>
 | 
						|
        <img src="{% qrcode qr_data %}">
 | 
						|
    </div>
 | 
						|
    {% else %}
 | 
						|
    <div class='alert alert-block alert-warning'>
 | 
						|
        {% trans "QR data not provided" %}
 | 
						|
    </div>
 | 
						|
    {% endif %}
 | 
						|
</div> |