| 12345678910111213141516171819202122232425262728293031 |
- <?php
- use yii\helpers\Html;
- use yii\widgets\ActiveForm;
- /* @var $this yii\web\View */
- /* @var $model app\models\Files */
- /* @var $form yii\widgets\ActiveForm */
- ?>
- <div class="files-form">
- <?php $form = ActiveForm::begin(); ?>
- <?= $form->field($model, 'path')->textInput(['maxlength' => true]) ?>
- <?= $form->field($model, 'name')->textInput(['maxlength' => true]) ?>
- <?= $form->field($model, 'user_id')->textInput() ?>
- <?= $form->field($model, 'auction_id')->textInput() ?>
- <?= $form->field($model, 'lot_id')->textInput() ?>
- <div class="form-group">
- <?= Html::submitButton($model->isNewRecord ? Yii::t('app', 'Create') : Yii::t('app', 'Update'), ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
- </div>
- <?php ActiveForm::end(); ?>
- </div>
|