summaryrefslogtreecommitdiff
path: root/protected/views/veranstaltung/now.php
diff options
context:
space:
mode:
Diffstat (limited to 'protected/views/veranstaltung/now.php')
-rw-r--r--protected/views/veranstaltung/now.php18
1 files changed, 11 insertions, 7 deletions
diff --git a/protected/views/veranstaltung/now.php b/protected/views/veranstaltung/now.php
index 8eb8c64..12202ba 100644
--- a/protected/views/veranstaltung/now.php
+++ b/protected/views/veranstaltung/now.php
@@ -5,14 +5,18 @@ $this->breadcrumbs=array(
$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>Veranstaltungen heute um <?php echo date("H:i");?></h3>
-
-
-<?php $this->widget('zii.widgets.grid.CGridView', array(
- 'id'=>'veranstaltung-grid',
- 'dataProvider'=>$model->now()
-
-
+<?php $this->widget('zii.widgets.CListView', array(
+ 'dataProvider'=>$model->now(),
+ 'itemView'=>'_short_all', // refers to the partial view named '_post'
+ 'sortableAttributes'=>array(
+ 'name',
+ /*'create_time'=>'Post Time',*/
+ ),
));?>