| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- use yii\helpers\Html;
- use yii\widgets\ActiveForm;
- /* @var $this yii\web\View */
- /* @var $model app\models\HelpSearch */
- /* @var $form yii\widgets\ActiveForm */
- ?>
- <div class="help-search">
- <?php $form = ActiveForm::begin([
- 'action' => ['index'],
- 'method' => 'get',
- ]); ?>
- <?= $form->field($model, 'id') ?>
- <?= $form->field($model, 'title') ?>
- <?= $form->field($model, 'h1') ?>
- <?= $form->field($model, 'short_text') ?>
- <?= $form->field($model, 'text') ?>
- <?php // echo $form->field($model, 'description') ?>
- <?php // echo $form->field($model, 'key_words') ?>
- <?php // echo $form->field($model, 'cat_id') ?>
- <?php // echo $form->field($model, 'slug') ?>
- <?php // echo $form->field($model, 'created_at') ?>
- <div class="form-group">
- <?= Html::submitButton(Yii::t('app', 'Search'), ['class' => 'btn btn-primary']) ?>
- <?= Html::resetButton(Yii::t('app', 'Reset'), ['class' => 'btn btn-default']) ?>
- </div>
- <?php ActiveForm::end(); ?>
- </div>
|