summaryrefslogtreecommitdiff
path: root/protected/views/user/update.php
diff options
context:
space:
mode:
Diffstat (limited to 'protected/views/user/update.php')
-rw-r--r--protected/views/user/update.php18
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