blob: 7141792faf6263a9ed3da0999aa186d88251cb6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
$this->breadcrumbs=array(
'Standorte'=>array('index'),
'Standort "'.$model->name.'" bearbeiten',
);
$this->menu=array(
array('label'=>'Standorte', 'url'=>array('index')),
array('label'=>'Standort erstellen', 'url'=>array('create')),
);
?>
<h1>Standort "<?php echo $model->name; ?>" bearbeiten</h1>
<?php echo $this->renderPartial('_form', array('model'=>$model)); ?>
|