12345678910111213141516171819202122232425 |
- <?php
- use yii\bootstrap\ActiveForm;
- use yii\helpers\Html;
- /* @var $this yii\web\View */
- /* @var $model common\models\Nav */
- /* @var $form yii\bootstrap\ActiveForm */
- ?>
- <div class="widget-Nav-form">
- <?php $form = ActiveForm::begin(); ?>
- <?php echo $form->field($model, 'key')->textInput(['maxlength' => 1024]) ?>
- <?php echo $form->field($model, 'title')->textInput(['maxlength' => 1024]) ?>
- <div class="form-group form-submit">
- <?php echo Html::submitButton($model->isNewRecord ? Yii::t('backend', 'Create') : Yii::t('backend', 'Update'), ['class' => 'btn btn-success']) ?>
- </div>
- <?php ActiveForm::end(); ?>
- </div>
|