add money movement crud and table

This commit is contained in:
2015-10-19 10:19:19 +02:00
parent 5be26aa108
commit ab40f937a3
11 changed files with 511 additions and 0 deletions

View File

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