diff options
| author | tzur <tzur@ccwn.org> | 2012-04-15 15:30:09 +0200 |
|---|---|---|
| committer | tzur <tzur@ccwn.org> | 2012-04-15 15:30:09 +0200 |
| commit | 5b2095abddf9d0596a7715879357e8d9a3b786b2 (patch) | |
| tree | 0c2b6fdc1484b697b1a3740582a906fb51c1d64f /protected/views/user/update.php | |
Initial version
Diffstat (limited to 'protected/views/user/update.php')
| -rw-r--r-- | protected/views/user/update.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/protected/views/user/update.php b/protected/views/user/update.php new file mode 100644 index 0000000..569bb5f --- /dev/null +++ b/protected/views/user/update.php @@ -0,0 +1,18 @@ +<?php +$this->breadcrumbs=array( + 'Users'=>array('index'), + $model->id=>array('view','id'=>$model->id), + 'Update', +); + +$this->menu=array( + array('label'=>'List User', 'url'=>array('index')), + array('label'=>'Create User', 'url'=>array('create')), + array('label'=>'View User', 'url'=>array('view', 'id'=>$model->id)), + array('label'=>'Manage User', 'url'=>array('admin')), +); +?> + +<h1>Update User <?php echo $model->id; ?></h1> + +<?php echo $this->renderPartial('_form', array('model'=>$model)); ?>
\ No newline at end of file |
