33 lines
1.1 KiB
HTML
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> |