fix admin views

This commit is contained in:
Antonio Ramirez
2016-12-10 21:42:16 +01:00
parent 0faf61f044
commit 005ab4f1b8
9 changed files with 294 additions and 332 deletions

View File

@ -1,21 +1,12 @@
<?php
/*
* This file is part of the Dektrium project.
*
* (c) Dektrium project <http://github.com/dektrium>
*
* For the full copyright and license information, please view the LICENSE.md
* file that was distributed with this source code.
*/
use yii\bootstrap\ActiveForm;
use yii\bootstrap\Nav;
use yii\helpers\Html;
/**
* @var yii\web\View $this
* @var dektrium\user\models\User $user
* @var yii\web\View $this
* @var \Da\User\Model\User $user
*/
$this->title = Yii::t('user', 'Create a user account');
@ -24,9 +15,12 @@ $this->params['breadcrumbs'][] = $this->title;
?>
<?= $this->render('/_alert', [
'module' => Yii::$app->getModule('user'),
]) ?>
<?= $this->render(
'/_alert',
[
'module' => Yii::$app->getModule('user'),
]
) ?>
<?= $this->render('_menu') ?>
@ -34,22 +28,30 @@ $this->params['breadcrumbs'][] = $this->title;
<div class="col-md-3">
<div class="panel panel-default">
<div class="panel-body">
<?= Nav::widget([
'options' => [
'class' => 'nav-pills nav-stacked',
],
'items' => [
['label' => Yii::t('user', 'Account details'), 'url' => ['/user/admin/create']],
['label' => Yii::t('user', 'Profile details'), 'options' => [
'class' => 'disabled',
'onclick' => 'return false;',
]],
['label' => Yii::t('user', 'Information'), 'options' => [
'class' => 'disabled',
'onclick' => 'return false;',
]],
],
]) ?>
<?= Nav::widget(
[
'options' => [
'class' => 'nav-pills nav-stacked',
],
'items' => [
['label' => Yii::t('user', 'Account details'), 'url' => ['/user/admin/create']],
[
'label' => Yii::t('user', 'Profile details'),
'options' => [
'class' => 'disabled',
'onclick' => 'return false;',
]
],
[
'label' => Yii::t('user', 'Information'),
'options' => [
'class' => 'disabled',
'onclick' => 'return false;',
]
],
],
]
) ?>
</div>
</div>
</div>
@ -60,16 +62,18 @@ $this->params['breadcrumbs'][] = $this->title;
<?= Yii::t('user', 'Credentials will be sent to the user by email') ?>.
<?= Yii::t('user', 'A password will be generated automatically if not provided') ?>.
</div>
<?php $form = ActiveForm::begin([
'layout' => 'horizontal',
'enableAjaxValidation' => true,
'enableClientValidation' => false,
'fieldConfig' => [
'horizontalCssClasses' => [
'wrapper' => 'col-sm-9',
<?php $form = ActiveForm::begin(
[
'layout' => 'horizontal',
'enableAjaxValidation' => true,
'enableClientValidation' => false,
'fieldConfig' => [
'horizontalCssClasses' => [
'wrapper' => 'col-sm-9',
],
],
],
]); ?>
]
); ?>
<?= $this->render('_user', ['form' => $form, 'user' => $user]) ?>