40 lines
1.0 KiB
PHP
40 lines
1.0 KiB
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use yii\widgets\ActiveForm;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\Collection */
|
|
/* @var $form yii\widgets\ActiveForm */
|
|
?>
|
|
|
|
<div class="collection-form">
|
|
|
|
<?php $form = ActiveForm::begin(); ?>
|
|
|
|
<?= $form->field($model, 'id_user')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'created_by')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'id_account')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'money')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'start')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'end')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'type')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'created_at')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'updated_at')->textInput() ?>
|
|
|
|
<div class="form-group">
|
|
<?= Html::submitButton($model->isNewRecord ? Yii::t('backend/collection', 'Create') : Yii::t('backend/collection', 'Update'), ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
|
|
</div>
|
|
|
|
<?php ActiveForm::end(); ?>
|
|
|
|
</div>
|