summaryrefslogtreecommitdiff
path: root/protected/views/veranstaltung/view.php
blob: 2547f4ff8cb8c224dfc175d757ab6bf6892c9258 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
$this->breadcrumbs=array(
	'Veranstaltungen'=>array('index'),
	$model->titel,
);
$this->pageTitle = $model->titel . ' - ' . Yii::app()->name;

$this->menu=array(
	array('label'=>'Alle Veranstaltungen', 'url'=>array('index')),
	array('label'=>'Jetzt auf dem Fest', 'url'=>array('now')),
	//		array('label'=>'Veranstaltung suchen', 'url'=>array('search')),
	);
?>

<h3><?php echo $model->titel; ?></h3>
<p>von <?php echo Yii::app()->dateFormatter->format('EEEE hh:mm',$model->startzeit)." Uhr"?> bis <?php 
echo Yii::app()->dateFormatter->format('EEEE hh:mm',$model->endzeit)." Uhr"?> 
auf der Bühne <?php echo CHtml::link($model->standort->name,array("standort/view","id"=>$model->standort_id))?></p>
<p>
<?php 
echo $model->beschreibung;
?>
</p>
<div class="box info"><p>Veranstalter ist der Verein <?php echo CHtml::link($model->verein->name,array("verein/view","id"=>$model->verein_id))?></p><?php echo $model->verein->kontaktdaten?></div>