-Add new setting "Delete shift"
-Move "Shift" frontend to V1 module
This commit is contained in:
miroman-afk
2022-02-01 01:55:15 +03:00
parent 57949aa89a
commit 5497b611ef
29 changed files with 1359 additions and 3 deletions

33
web/views/users/logs.html Normal file
View File

@@ -0,0 +1,33 @@
<div class="padding">
<div class="box">
<div class="table-responsive">
<table class="table table-bordered m-a-0">
<thead>
<tr>
<th>Log ID</th>
<th>User</th>
<th>Module</th>
<th>Action type</th>
<th>Action</th>
<th>Old value</th>
<th>New value</th>
<th>Время</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="log in logs">
<td>{{log.id}}</td>
<td>{{log.user}}</td>
<td>{{log.module}}</td>
<td>{{log.action_type}}</td>
<td>{{log.action}}</td>
<td>{{log.old_value}}</td>
<td>{{log.new_value}}</td>
<td>{{log.time}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>