blob: a3106d69d6d52f76aac564515bb79d2e0b510fad (
plain)
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
|
<div class="view">
<b><?php echo CHtml::encode($data->getAttributeLabel('id')); ?>:</b>
<?php echo CHtml::link(CHtml::encode($data->id), array('view', 'id'=>$data->id)); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('username')); ?>:</b>
<?php echo CHtml::encode($data->username); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('created_at')); ?>:</b>
<?php echo CHtml::encode($data->created_at); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('last_login')); ?>:</b>
<?php echo CHtml::encode($data->last_login); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('is_active')); ?>:</b>
<?php echo CHtml::encode($data->is_active); ?>
<br />
<b><?php echo CHtml::encode($data->getAttributeLabel('is_super_admin')); ?>:</b>
<?php echo CHtml::encode($data->is_super_admin); ?>
<br />
</div>
|