mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +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> |