add key crud

This commit is contained in:
rocho
2015-11-29 12:07:21 +01:00
parent ed80f8720d
commit d7c08ec60b
13 changed files with 645 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model common\models\Key */
$this->title = Yii::t('backend/key', 'Create Key');
$this->params['breadcrumbs'][] = ['label' => Yii::t('backend/key', 'Keys'), 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="key-create">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>