diff options
| author | Patrick Seeger <pseeger@ccwn.org> | 2012-05-15 21:30:11 +0200 |
|---|---|---|
| committer | Patrick Seeger <pseeger@ccwn.org> | 2012-05-15 21:30:11 +0200 |
| commit | 5759435f4da8ec800ba9af0fbbf7d6691e9ed56c (patch) | |
| tree | a3e6f6c676743e89b11804a03bd4f1e837983be9 /protected/views/veranstaltung/_view.php | |
| parent | 94bdb31c204cdae3ca820828d4731f11f6ffeeae (diff) | |
diverse Layoutings
Diffstat (limited to '')
| -rw-r--r-- | protected/views/veranstaltung/_view.php | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/protected/views/veranstaltung/_view.php b/protected/views/veranstaltung/_view.php new file mode 100644 index 0000000..daa818a --- /dev/null +++ b/protected/views/veranstaltung/_view.php @@ -0,0 +1,38 @@ +<div class="view"> + + <b><?php echo CHtml::encode($data->getAttributeLabel('id')); ?>:</b> + <?php echo CHtml::link(CHtml::encode($data->id), array('view', 'id'=>$data->id)); ?> + <br /> + + <b><?php echo CHtml::encode($data->getAttributeLabel('verein_id')); ?>:</b> + <?php echo CHtml::encode($data->verein_id); ?> + <br /> + + <b><?php echo CHtml::encode($data->getAttributeLabel('titel')); ?>:</b> + <?php echo CHtml::encode($data->titel); ?> + <br /> + + <b><?php echo CHtml::encode($data->getAttributeLabel('startzeit')); ?>:</b> + <?php echo CHtml::encode($data->startzeit); ?> + <br /> + + <b><?php echo CHtml::encode($data->getAttributeLabel('endzeit')); ?>:</b> + <?php echo CHtml::encode($data->endzeit); ?> + <br /> + + <b><?php echo CHtml::encode($data->getAttributeLabel('beschreibung')); ?>:</b> + <?php echo CHtml::encode($data->beschreibung); ?> + <br /> + + <b><?php echo CHtml::encode($data->getAttributeLabel('standort_id')); ?>:</b> + <?php echo CHtml::encode($data->standort_id); ?> + <br /> + + <?php /* + <b><?php echo CHtml::encode($data->getAttributeLabel('published')); ?>:</b> + <?php echo CHtml::encode($data->published); ?> + <br /> + + */ ?> + +</div>
\ No newline at end of file |
