Files
admin-php-module/web/views/users/logs.html
miroman-afk 5497b611ef v.2.12
-Add new setting "Delete shift"
-Move "Shift" frontend to V1 module
2022-02-01 01:55:15 +03:00

33 lines
1.1 KiB
HTML

<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>