v.2.12
-Add new setting "Delete shift" -Move "Shift" frontend to V1 module
This commit is contained in:
33
web/views/users/logs.html
Normal file
33
web/views/users/logs.html
Normal 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>
|
||||
Reference in New Issue
Block a user