2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-20 05:46:34 +00:00
Files
InvenTree/InvenTree/templates/InvenTree/settings/build.html
2021-07-27 00:20:31 +10:00

21 lines
549 B
HTML

{% extends "panel.html" %}
{% load i18n %}
{% load inventree_extras %}
{% block label %}build-order{% endblock %}
{% block heading %}
{% trans "Build Order Settings" %}
{% endblock %}
{% block content %}
<table class='table table-striped table-condensed'>
{% include "InvenTree/settings/header.html" %}
<tbody>
{% include "InvenTree/settings/setting.html" with key="BUILDORDER_REFERENCE_PREFIX" %}
{% include "InvenTree/settings/setting.html" with key="BUILDORDER_REFERENCE_REGEX" %}
</tbody>
</table>
{% endblock %}