2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 13:05:42 +00:00

Display singleton settings in the settings tab

- Only visible to 'staff' user
This commit is contained in:
Oliver Walters
2019-09-15 23:09:58 +10:00
parent 098cd0ec44
commit 2c1a744c2d
3 changed files with 35 additions and 1 deletions

View File

@ -8,4 +8,23 @@
<h4>InvenTree Settings</h4>
<table class='table table-striped table-condensed' id='other-table'>
<thead>
<tr>
<th>Setting</th>
<th>Value</th>
<th>Description</th>
</tr>
</thead>
<tbody>
{% for setting in settings %}
<tr>
<td>{{ setting.key }}</td>
<td>{{ setting.value }}</td>
<td>{{ setting.description }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}