2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-19 21:45:39 +00:00

Edit new stock settings on settings page

This commit is contained in:
Oliver Walters
2021-01-05 00:59:10 +11:00
parent 855098e30b
commit 1335c85de1
2 changed files with 13 additions and 3 deletions

View File

@ -10,7 +10,13 @@
{% endblock %}
{% block settings %}
<div class='alert alert-block alert-info'>
<i>No Stock settings available</i>
</div>
<h4>{% trans "Stock Options" %}</h4>
<table class='table table-striped table-condensed'>
{% include "InvenTree/settings/header.html" %}
<tbody>
{% include "InvenTree/settings/setting.html" with key="STOCK_ALLOW_EXPIRED_SALE" %}
{% include "InvenTree/settings/setting.html" with key="STOCK_ALLOW_EXPIRED_BUILD" %}
</tbody>
</table>
{% endblock %}