42 lines
2.1 KiB
Smarty
42 lines
2.1 KiB
Smarty
<table class="table table-bordered table-striped">
|
|
<thead>
|
|
<tr class="info">
|
|
<th style="width: 10%;">Mã cửa</th>
|
|
<th>Tên cửa</th>
|
|
<th>Thời gian mở cửa (giây)</th>
|
|
<th>Sửa</th>
|
|
<th style="width: 15%;">Mở cửa</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach from=$doors item=d}
|
|
<tr>
|
|
<td class="text-center">{$d->code}</td>
|
|
<td>
|
|
<span id="name-text-{$d->id}" class="real-{$d->id}">{$d->name}</span>
|
|
<input type="text" value="{$d->name}" class="hidden edit-{$d->id}" id="name-input-{$d->id}">
|
|
</td>
|
|
<td class="text-center">
|
|
<span id="duration-text-{$d->id}" class="real-{$d->id}">{$d->duration}</span>
|
|
<input type="number" value="{$d->duration}" class="hidden edit-{$d->id}" id="duration-input-{$d->id}">
|
|
</td>
|
|
<td class="text-center">
|
|
<button class="btn btn-success real-{$d->id}" data="{$d->id}" onclick="openFormEditDoor(this, true);" id="btn-edit-{$d->id}">
|
|
<i class="fa fa-edit"></i>
|
|
</button>
|
|
<button class="btn btn-primary hidden edit-{$d->id}" data="{$d->id}" onclick="editDoor(this);" id="btn-save-{$d->id}" data-href="{yii\helpers\Url::to(['edit-door', 'id' => $d->id])}">
|
|
<i class="fa fa-floppy-o"></i>
|
|
</button>
|
|
<button class="btn btn-danger hidden edit-{$d->id}" data="{$d->id}" onclick="openFormEditDoor(this, false);" id="btn-close-{$d->id}">
|
|
<i class="fa fa-remove"></i>
|
|
</button>
|
|
</td>
|
|
<td class="text-center">
|
|
<button class="btn btn-primary" onclick="openDoor(this);" data-href="{yii\helpers\Url::to(['open-door', 'id' => $model->id, 'door' => $d->code])}">
|
|
Mở
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table> |