summaryrefslogtreecommitdiff
path: root/protected/views/speisTrank/view.php
blob: 2dc38413d6dc8e5349ce8afabfd1ed17997710b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
$this->breadcrumbs=array(
	'Speis & Trank'=>array('index'),
	$model->name,
);

$this->menu=array(
	array('label'=>'Speis & Trank', 'url'=>array('index')),
	array('label'=>'Kulinarisches Angebot erstellen', 'url'=>array('create')),
	array('label'=>$model->name.' bearbeiten', 'url'=>array('update', 'id'=>$model->id)),
	array('label'=>$model->name.' löschen', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->id),'confirm'=>'Are you sure you want to delete this item?')),
);
?>

<h3><?php echo $model->name." (".$model->kategorie->name.")"; ?></h3>

<p><?php echo $model->beschreibung; ?></p>
<h5>Angeboten durch:</h5>
<?php $this->renderPartial('_angebot_vereine',array(
			'angebot_vereine'=>$model->angebot_vereine,
		)); ?>