mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-05 06:48:48 +00:00
21 lines
549 B
HTML
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 %} |