diff options
Diffstat (limited to 'protected/views/standort/_view.php')
| -rw-r--r-- | protected/views/standort/_view.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/protected/views/standort/_view.php b/protected/views/standort/_view.php new file mode 100644 index 0000000..a02c1e3 --- /dev/null +++ b/protected/views/standort/_view.php @@ -0,0 +1,24 @@ +<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('name')); ?>:</b> + <?php echo CHtml::encode($data->name); ?> + <br /> + + <b><?php echo CHtml::encode($data->getAttributeLabel('pos_lat')); ?>:</b> + <?php echo CHtml::encode($data->pos_lat); ?> + <br /> + + <b><?php echo CHtml::encode($data->getAttributeLabel('pos_long')); ?>:</b> + <?php echo CHtml::encode($data->pos_long); ?> + <br /> + + <b><?php echo CHtml::encode($data->getAttributeLabel('published')); ?>:</b> + <?php echo CHtml::encode($data->published); ?> + <br /> + + +</div>
\ No newline at end of file |
