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:
@ -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 %}
|
Reference in New Issue
Block a user