_form.php 860 Bytes
<?php
use thread\app\bootstrap\ActiveForm;

/**
 * @var $model \backend\modules\location\models\Currency
 * @var $modelLang \backend\modules\location\models\CurrencyLang
 * @var $form ActiveForm
 */
$form = ActiveForm::begin();
//
echo $form->submit($model, $this)
    . $form->text_line($model, 'alias')
    . $form->text_line_lang($modelLang, 'title'); ?>

    <div class="row control-group">
        <div class="col-md-4">
            <?= $form->text_line($model, 'code1') ?>
        </div>
        <div class="col-md-4">
            <?= $form->text_line($model, 'code2') ?>
        </div>
        <div class="col-md-4">
            <?= $form->text_line($model, 'currency_symbol') ?>
        </div>
    </div>
<?php
echo $form->text_line($model, 'course')
    . $form->switcher($model, 'published')
    . $form->submit($model, $this);
//
ActiveForm::end();