Пример #1
0
    <?//= $form->field($model, 'timecreated')->textInput() ?>

    <?//= $form->field($model, 'avatar')->textInput(['maxlength' => true]) ?>

    <?//= $form->field($model, 'avatarmedium')->textInput(['maxlength' => true]) ?>

    <?//= $form->field($model, 'avatarfull')->textInput(['maxlength' => true]) ?>

    <?//= $form->field($model, 'country_id')->textInput() ?>
    <?php 
echo $form->field($model, 'country_id')->dropDownList(Country::getLeaguesListDropDown(), [$model->country_id]);
?>
    
    <?php 
echo $form->field($model, 'role_id')->dropDownList(DotaPlayerRole::getRolesListDropDown(), [$model->role_id]);
?>
    
    <?php 
echo $form->field($model, 'status')->dropDownList($model->statusValues, [$model->status]);
?>
    
    <?php 
echo $form->field($model, 'imageFiles')->fileInput();
?>
    <?php 
if ($model->foto != '') {
    ?>
    	<div class="form-group">
    		<?php 
    echo Html::img(DImageHelper::getImageUrl($model->foto, 'players'));