23 lines
666 B
Smarty
23 lines
666 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> |