28 lines
821 B
Smarty
28 lines
821 B
Smarty
<table style="width: 100%;" class="table-bordered table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>Người dùng</th>
|
|
<th>Thời gian</th>
|
|
<th>Hành động</th>
|
|
<th>Chi tiết</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{$count=1}
|
|
{foreach from=$logs item=l}
|
|
<tr>
|
|
<td>{$count++}</td>
|
|
<td>{$userArray[$l->user_id]|default:""}</td>
|
|
<td>{$l->time|date_format:"%H:%M:%S %d/%m/%Y"}</td>
|
|
<td>{$l->action}</td>
|
|
<td>{$l->description}</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
<div class="text-right">
|
|
<button class="btn btn-default" data-dismiss="modal">
|
|
<span class="fa fa-remove"></span> Đóng
|
|
</button>
|
|
</div> |