forked from prajapatikaml/EduSec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update.php
executable file
·32 lines (26 loc) · 1.02 KB
/
update.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model app\models\User */
$this->title = Yii::t('app', 'Update User: ') . ' ' . $model->user_id;
$this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Users'), 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->user_id, 'url' => ['view', 'id' => $model->user_id]];
//$this->params['breadcrumbs'][] = 'Update';
?>
<div class="col-xs-12">
<div class="col-lg-4 col-sm-4 col-xs-12 no-padding"><h3 class="box-title"><i class="fa fa-edit"></i> <?php echo Yii::t('app', 'Update'); ?> </h3>
</div>
<div class="col-xs-4"></div>
<div class="col-lg-4 col-sm-4 col-xs-12 no-padding" style="padding-top: 20px !important;">
<div class="col-xs-4"></div>
<div class="col-xs-4"></div>
<div class="col-xs-4 left-padding">
<?= Html::a(Yii::t('app', 'Back'), ['index'], ['class' => 'btn btn-block btn-back']) ?>
</div>
</div>
</div>
<div class="user-update">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>