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