21 lines
465 B
PHP
21 lines
465 B
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\DoorLog */
|
|
|
|
$this->title = "Move";
|
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('common/door_log', 'Door Logs'), 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = Yii::t('common/door_log', 'Update');
|
|
?>
|
|
<div class="door-log-update">
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
|
|
<?= $this->render('_form_move', [
|
|
'model' => $model,
|
|
]) ?>
|
|
|
|
</div>
|