diff options
| author | Björn Geiger | 2011-03-17 14:03:43 +0100 |
|---|---|---|
| committer | Björn Geiger | 2011-03-17 14:03:43 +0100 |
| commit | a26061089a91bf3a214d6a0dba9ffad8a7006a61 (patch) | |
| tree | 718ef3992621aba600e39f877f9c9068e17662ca /application/modules/dev/views/scripts/bootos | |
| parent | ClientMapper return value (diff) | |
| download | pbs2-a26061089a91bf3a214d6a0dba9ffad8a7006a61.tar.gz pbs2-a26061089a91bf3a214d6a0dba9ffad8a7006a61.tar.xz pbs2-a26061089a91bf3a214d6a0dba9ffad8a7006a61.zip | |
Person und Gruppen, Fehler korrigiert + Layout
Diffstat (limited to 'application/modules/dev/views/scripts/bootos')
| -rw-r--r-- | application/modules/dev/views/scripts/bootos/index.phtml | 82 |
1 files changed, 42 insertions, 40 deletions
diff --git a/application/modules/dev/views/scripts/bootos/index.phtml b/application/modules/dev/views/scripts/bootos/index.phtml index 6462b1f..c5970b6 100644 --- a/application/modules/dev/views/scripts/bootos/index.phtml +++ b/application/modules/dev/views/scripts/bootos/index.phtml @@ -4,38 +4,39 @@ 'class' => 'addbutton'))?> <table> - <tr> - <th>ID</th> - <th>Title</th> - <th>GroupID</th> - <th>MembershipID</th> - <th>ConfigID</th> - <th>Init</th> - <th>Kernel</th> - <th>Kcl</th> - <th>Description</th> - <th>Changed</th> - <th>Expires</th> - <th>Public</th> - <th colspan=2>Actions</th> - </tr> - <?php if(count($this->bootoslist)==0) - echo "</table> There are no BootOs's to display." ?> - <?php foreach ($this->bootoslist as $bootos): ?> - <tr class=entry> - <td><?php echo $this->escape($bootos->getID()); ?></td> - <td><?php echo $this->escape($bootos->getTitle()); ?></td> - <td><?php echo $this->escape($bootos->getGroupID()); ?></td> - <td><?php echo $this->escape($bootos->getMembershipID()); ?></td> - <td><?php echo $this->escape($bootos->getConfigID()); ?></td> - <td><?php echo $this->escape($bootos->getPath_init()); ?></td> - <td><?php echo $this->escape($bootos->getPath_kernel()); ?></td> - <td><?php echo $this->escape($bootos->getDefaultkcl()); ?></td> - <td><?php echo $this->escape($bootos->getDescription()); ?></td> - <td><?php echo $this->escape(date('Y-m-d H:i:s', $bootos->getCreated())); ?></td> - <td><?php echo $this->escape($bootos->getExpires()); ?></td> - <td><?php echo $this->escape($bootos->getPublic()); ?></td> - <td class='action'><a href="<?php echo $this->url( + <tr> + <th>ID</th> + <th>Title</th> + <th>GroupID</th> + <th>MembershipID</th> + <th>ConfigID</th> + <th>Init</th> + <th>Kernel</th> + <th>Kcl</th> + <th>Description</th> + <th>Changed</th> + <th>Expires</th> + <th>Public</th> + <th colspan=2>Actions</th> + </tr> + <?php if(count($this->bootoslist)==0) + echo "</table> There are no BootOs's to display." ?> + <?php foreach ($this->bootoslist as $bootos): ?> + <tr class=entry> + <td><?php echo $this->escape($bootos->getID()); ?></td> + <td><?php echo $this->escape($bootos->getTitle()); ?></td> + <td><?php echo $this->escape($bootos->getGroupID()); ?></td> + <td><?php echo $this->escape($bootos->getMembershipID()); ?></td> + <td><?php echo $this->escape($bootos->getConfigID()); ?></td> + <td><?php echo $this->escape($bootos->getPath_init()); ?></td> + <td><?php echo $this->escape($bootos->getPath_kernel()); ?></td> + <td><?php echo $this->escape($bootos->getDefaultkcl()); ?></td> + <td><?php echo $this->escape($bootos->getDescription()); ?></td> + <td><?php echo $this->escape(date('Y-m-d H:i:s', $bootos->getCreated())); ?></td> + <td><?php echo $this->escape($bootos->getExpires()); ?></td> + <td><?php echo $this->escape($bootos->getPublic()); ?></td> + <td class='action'><a + href="<?php echo $this->url( array( 'module' => 'dev', 'controller' => 'bootos', @@ -43,8 +44,9 @@ 'bootosID' => $bootos->getID() ), 'default', - true, false) ?>"><img src='/media/img/edit.png' alt='Edit BootOS'/></a></td> - <td class='action'><a href="<?php echo $this->url( + true, false) ?>"><img src='/media/img/edit.png' alt='Edit BootOS' /></a></td> + <td class='action'><a + href="<?php echo $this->url( array( 'module' => 'dev', 'controller' => 'bootos', @@ -52,13 +54,13 @@ 'bootosID' => $bootos->getID() ), 'default', - true) ?>"><img src='/media/img/delete.png' alt='Delete BootOS'/></a></td> - </tr> - <?php endforeach; ?> + true) ?>"><img src='/media/img/delete.png' alt='Delete BootOS' /></a></td> + </tr> + <?php endforeach; ?> </table> - - - + + + |
