diff options
Diffstat (limited to 'application/modules/fbgui/views')
-rw-r--r-- | application/modules/fbgui/views/scripts/index/index.phtml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/application/modules/fbgui/views/scripts/index/index.phtml b/application/modules/fbgui/views/scripts/index/index.phtml index 4ed489c..cfd5e6d 100644 --- a/application/modules/fbgui/views/scripts/index/index.phtml +++ b/application/modules/fbgui/views/scripts/index/index.phtml @@ -23,20 +23,19 @@ $bootosMapper = new Application_Model_BootOsMapper(); $bootos = new Application_Model_BootOs(); $bootos = $bootosMapper->find($entry->getBootosID()); - #print_a($entry->getBootosID(),$bootos); ?> <div id="menu_item_1" class="menu" class="flexbox"> - <img src="/media/img/os/ubuntu.png"/> + <img src="/media/img/os/ubuntu.png" /> <h2><?php echo $entry->getTitle(); ?></h2> - <i><?php echo $bootos->getTitle();?></i> - <p><?php echo $bootos->getDescription();?></p> + <i>BootOs-Name: <?php echo $bootos->getTitle();?></i> + <p>Description: <?php echo $bootos->getDescription();?></p> <input type="hidden" class="id" value="<?php echo $entry->getID();?>"/> </div> <?php endforeach; ?> <input style="display:none;" type='text' id="selectedBootOs" /> - <button style='cursor:pointer;float:right;' onClick="start();"> + <button style='cursor:pointer;float:right;margin-top:10px;' onClick="start();"> <img id='startball' style='vertical-align:-3px;' src='/media/img/button-red.png'> <span style='font-size:14px;'>Start System</span> </button> |