diff options
Diffstat (limited to 'application/modules/dev/views/scripts/bootiso/index.phtml')
| -rw-r--r-- | application/modules/dev/views/scripts/bootiso/index.phtml | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/application/modules/dev/views/scripts/bootiso/index.phtml b/application/modules/dev/views/scripts/bootiso/index.phtml index 453f316..cb06be6 100644 --- a/application/modules/dev/views/scripts/bootiso/index.phtml +++ b/application/modules/dev/views/scripts/bootiso/index.phtml @@ -1,4 +1,4 @@ -<h1>BootISO</h1> +<h1>BootMedien</h1> <?php echo $this->formButton('createbootiso', 'Create BootISO', array( 'onclick' => 'self.location="/dev/bootiso/createbootiso"', 'class' => 'addbutton'))?> @@ -8,22 +8,22 @@ <th>Title</th> <th>GroupID</th> <th>MembershipID</th> - <th>FbGui Path</th> + <th>PrebootID</th> <th>Serialnumber</th> <th>Created</th> <th>Expires</th> <th>Public</th> - <th colspan=2>Actions</th> + <th colspan=3>Actions</th> </tr> <?php if(count($this->bootisolist)==0) - echo "</table> There are no BootISO's entries for the Bootmenuto display." ?> + echo "</table> There are no BootISO's entries to display." ?> <?php foreach ($this->bootisolist as $bootiso): ?> <tr class=entry> <td><?php echo $this->escape($bootiso->getID()); ?></td> <td><?php echo $this->escape($bootiso->getTitle()); ?></td> <td><?php echo $this->escape($bootiso->getGroupID()); ?></td> <td><?php echo $this->escape($bootiso->getMembershipID()); ?></td> - <td><?php echo $this->escape($bootiso->getPath_fbgui()); ?></td> + <td><?php echo "[" . $this->escape($bootiso->getPrebootID()) . "] " . $this->prebootlist[$bootiso->getID()]; ?></td> <td><?php echo $this->escape($bootiso->getSerialnumber()); ?></td> <td><?php echo $this->escape(date('Y-m-d H:i:s', $bootiso->getCreated())); ?></td> <td><?php echo $this->escape($bootiso->getExpires()); ?></td> @@ -32,6 +32,15 @@ array( 'module' => 'dev', 'controller' => 'bootiso', + 'action' => 'downloadbootiso', + 'prebootID' => $bootiso->getprebootID() + ), + 'default', + true, false) ?>"><img src='/media/img/download.png' alt='Download BootMedium' /></a></td> + <td class='action'><a href="<?php echo $this->url( + array( + 'module' => 'dev', + 'controller' => 'bootiso', 'action' => 'editbootiso', 'bootisoID' => $bootiso->getID() ), @@ -51,8 +60,6 @@ </table> - - |
