mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-19 13:35:40 +00:00
19 lines
401 B
HTML
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 %} |