d36bdac6
Administrator
17.02.16
|
1
|
<?php
|
a41edafc
Yarik
test
|
2
3
|
use yii\helpers\Html;
use yii\helpers\Url;
|
d36bdac6
Administrator
17.02.16
|
4
5
6
7
8
|
?>
<div class="command-block-wrapper">
<div class="command-block-wr-two">
<div class="command-block-foto">
|
a41edafc
Yarik
test
|
9
|
<?= Html::a(( $model->photo ? Html::img($model->photo) : '' ) . '<div class="hover-command-bg"></div>', Url::toRoute([ '#' ])) ?>
|
d36bdac6
Administrator
17.02.16
|
10
11
|
</div>
<div class="command-block-name"><?= $model->user ?></div>
|
a41edafc
Yarik
test
|
12
13
14
15
16
17
18
|
<?php
if(!empty( $model->department->name )) {
?>
<div class="command-block-job"><?= $model->department->name ?></div>
<?php
}
?>
|
d36bdac6
Administrator
17.02.16
|
19
20
21
22
23
24
|
<div class="command-block-line">
<div class="command-block-line-left"></div>
<div class="command-block-line-right"></div>
</div>
</div>
</div>
|