44 lines
1.0 KiB
PHP
Executable File
44 lines
1.0 KiB
PHP
Executable File
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use yii\widgets\ActiveForm;
|
|
|
|
/** @var yii\web\View $this */
|
|
/** @var backend\modules\gis\models\GisGeoFeaturesSearch $model */
|
|
/** @var yii\widgets\ActiveForm $form */
|
|
?>
|
|
|
|
<div class="gis-geo-features-search">
|
|
|
|
<?php $form = ActiveForm::begin([
|
|
'action' => ['index'],
|
|
'method' => 'get',
|
|
]); ?>
|
|
|
|
<?= $form->field($model, 'id') ?>
|
|
|
|
<?= $form->field($model, 'gis_base_id') ?>
|
|
|
|
<?= $form->field($model, 'name') ?>
|
|
|
|
<?= $form->field($model, 'geometry') ?>
|
|
|
|
<?= $form->field($model, 'type') ?>
|
|
|
|
<?php // echo $form->field($model, 'created_at') ?>
|
|
|
|
<?php // echo $form->field($model, 'updated_at') ?>
|
|
|
|
<?php // echo $form->field($model, 'created_by') ?>
|
|
|
|
<?php // echo $form->field($model, 'updated_by') ?>
|
|
|
|
<div class="form-group">
|
|
<?= Html::submitButton('Search', ['class' => 'btn btn-primary']) ?>
|
|
<?= Html::resetButton('Reset', ['class' => 'btn btn-outline-secondary']) ?>
|
|
</div>
|
|
|
|
<?php ActiveForm::end(); ?>
|
|
|
|
</div>
|