mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-01 04:56:45 +00:00
Start skeleton for better settings page
This commit is contained in:
parent
9a61ba4e1e
commit
1b8fb4db44
@ -8,6 +8,12 @@ InvenTree | Settings
|
|||||||
<h3>InvenTree Settings</h3>
|
<h3>InvenTree Settings</h3>
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
|
<div class='tab'>
|
||||||
|
<button class='vtab'>User Settings</button>
|
||||||
|
<button class='vtab'>Currency Settings</button>
|
||||||
|
<button class='vtab'></button>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class='row'>
|
<div class='row'>
|
||||||
<div class='col-sm-6'>
|
<div class='col-sm-6'>
|
||||||
<h4>User Information</h4>
|
<h4>User Information</h4>
|
||||||
@ -21,7 +27,8 @@ InvenTree | Settings
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<table class='table table-striped table-condensed'>
|
<div class='settings' id='settings-user'>
|
||||||
|
<table class='table table-striped table-condensed'>
|
||||||
<tr>
|
<tr>
|
||||||
<td>First Name</td>
|
<td>First Name</td>
|
||||||
<td>{{ user.first_name }}</td>
|
<td>{{ user.first_name }}</td>
|
||||||
@ -34,7 +41,31 @@ InvenTree | Settings
|
|||||||
<td>Email Address</td>
|
<td>Email Address</td>
|
||||||
<td>{{ user.email }}</td>
|
<td>{{ user.email }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class='settings' id='settings-currency'>
|
||||||
|
<table class='table table-striped table-condensed'>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Currency</th>
|
||||||
|
<th>Value</th>
|
||||||
|
<th>Default</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class='settings' id='settings-parameters'>
|
||||||
|
<table class='table table-striped table-condensed'>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Name</th>
|
||||||
|
<th>Units</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user