2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-19 13:35:40 +00:00
Files
InvenTree/InvenTree/templates/InvenTree/settings/barcode.html
2021-10-28 12:38:33 +11:00

19 lines
401 B
HTML

{% extends "panel.html" %}
{% load i18n %}
{% load inventree_extras %}
{% block label %}barcodes{% endblock %}
{% block heading %}
{% trans "Barcode Settings" %}
{% endblock %}
{% block content %}
<table class='table table-striped table-condensed'>
<tbody>
{% include "InvenTree/settings/setting.html" with key="BARCODE_ENABLE" icon="fa-qrcode" %}
</tbody>
</table>
{% endblock %}