ubn5/backend/modules/forum/views/thread/_search.php

50 lines
1.2 KiB
PHP
Raw Normal View History

2025-02-10 05:21:56 +00:00
<?php
use yii\helpers\Html;
use yii\widgets\ActiveForm;
/* @var $this yii\web\View */
/* @var $model backend\modules\forum\models\ForumThreadSearch */
/* @var $form yii\widgets\ActiveForm */
?>
<div class="forum-thread-search">
<?php $form = ActiveForm::begin([
'action' => ['index'],
'method' => 'get',
]); ?>
<?= $form->field($model, 'id') ?>
<?= $form->field($model, 'forum_category_id') ?>
<?= $form->field($model, 'name') ?>
<?= $form->field($model, 'description') ?>
<?// $form->field($model, 'status') ?>
<?php // echo $form->field($model, 'created_at') ?>
<?php // echo $form->field($model, 'updated_at') ?>
<?php // echo $form->field($model, 'thread_by') ?>
<?php // echo $form->field($model, 'thread_tel') ?>
<?php // echo $form->field($model, 'thread_email') ?>
<?php // echo $form->field($model, 'thread_contact') ?>
<?php // echo $form->field($model, 'remark') ?>
<div class="form-group">
<?= Html::submitButton('Search', ['class' => 'btn btn-primary']) ?>
<?= Html::resetButton('Reset', ['class' => 'btn btn-outline-secondary']) ?>
</div>
<?php ActiveForm::end(); ?>
</div>