add backend door log

This commit is contained in:
2017-01-12 22:34:06 +01:00
parent fa0eba3a11
commit c0d36c525e
7 changed files with 162 additions and 11 deletions

View File

@@ -0,0 +1,20 @@
<?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>