Blame view

protected/modules/admin/views/user/create.php 613 Bytes
a1684257   Administrator   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  <?php
  $this->breadcrumbs = array(
      'Админ. пользователи' => array('admin'),
      'Добавить',
  );
  
  $this->menu = array(
      array('label' => 'Действия', 'itemOptions' => array('class' => 'nav-header')),
  
      array('label' => '<i class="icon-list"></i>Список пользователей', 'url' => array('/admin/user/admin')),
  
  );
  ?>
  <?php $this->beginContent('layout') ?>
  <h1>Добавить пользователя системи управления сайтом</h1>
  
  <?php echo $this->renderPartial('_form', array('model' => $model)); ?>
  
  <?php $this->endContent(); ?>