Example #1
0
$this->pageTitle = Yii::t('default', 'Заказы');
$this->breadcrumbs = array_merge([CHtml::encode($this->pageTitle)]);
?>
<div class="blue-section">
    <h2><?php 
echo Yii::t('default', 'Заказы');
?>
</h2>
    <?php 
$form = $this->beginWidget('bootstrap.widgets.TbActiveForm', ['id' => 'order-cargo', 'enableAjaxValidation' => false, 'enableClientValidation' => true, 'type' => 'vertical']);
?>
    
    <div class="row">
        <section class="col-sm-6">
        <?php 
echo $form->dropDownListGroup($ResponseSearchForm, 'type', ['widgetOptions' => ['data' => Response::getOrderType()]]);
?>
        </section>
        <section class="col-sm-6">
        <?php 
echo $form->dropDownListGroup($ResponseSearchForm, 'model', ['widgetOptions' => ['data' => ['all' => Yii::t('default', 'Все')] + Response::getOrderModel()]]);
?>
        </section>
    </div>
    <div class="row">
        <section class="col-sm-9"></section>
        <section class="col-sm-3">
        <?php 
$this->widget('bootstrap.widgets.TbButton', ['buttonType' => 'submit', 'htmlOptions' => ['name' => 'save', 'value' => 'save', 'class' => 'search'], 'label' => '<i class="fa fa-search"></i> ' . Yii::t('default', 'Искать'), 'encodeLabel' => false]);
?>
        </section>