summaryrefslogtreecommitdiffstats
path: root/application/modules/user/views/scripts/bootiso
diff options
context:
space:
mode:
authormichael pereira2011-04-05 19:33:19 +0200
committermichael pereira2011-04-05 19:33:19 +0200
commit3a6c9972b59b11dc98b76ee51446d5568ef0f519 (patch)
treeb0b93ab6630b09c12a94e7e97fb5bd7783754fca /application/modules/user/views/scripts/bootiso
parentDates angepasst (diff)
downloadpbs2-3a6c9972b59b11dc98b76ee51446d5568ef0f519.tar.gz
pbs2-3a6c9972b59b11dc98b76ee51446d5568ef0f519.tar.xz
pbs2-3a6c9972b59b11dc98b76ee51446d5568ef0f519.zip
Forms Rechte angepasst, Views angepasst
Diffstat (limited to 'application/modules/user/views/scripts/bootiso')
-rw-r--r--application/modules/user/views/scripts/bootiso/index.phtml9
1 files changed, 3 insertions, 6 deletions
diff --git a/application/modules/user/views/scripts/bootiso/index.phtml b/application/modules/user/views/scripts/bootiso/index.phtml
index 23f7780..526edc0 100644
--- a/application/modules/user/views/scripts/bootiso/index.phtml
+++ b/application/modules/user/views/scripts/bootiso/index.phtml
@@ -9,10 +9,9 @@
<th>ID <span class='code'>bootosID</span></th>
<th>Title <span class='code'>title</span></th>
<th>GroupID <span class='code'>groupID</span></th>
- <th>MembershipID <span class='code'>membershipID</span></th>
<th>PrebootID <span class='code'>prebootID</span></th>
<th>Serialnumber <span class='code'>serialnumber</span></th>
- <th>Created <span class='code'>created</span></th>
+ <th>Changed <span class='code'>created</span></th>
<th>Expires <span class='code'>expires</span></th>
<th>Public <span class='code'>public</span></th>
<th colspan=3>Actions</th>
@@ -24,10 +23,9 @@
<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->getPrebootID()) . "] " . $this->prebootlist[$bootiso->getID()]; ?></td>
+ <td><?php echo $this->escape($bootiso->getPrebootID()); ?></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->getCreated()); ?></td>
<td><?php echo $this->escape($bootiso->getExpires()); ?></td>
<td><?php echo $this->escape($bootiso->getPublic()); ?></td>
<td class='action'><a href="<?php echo $this->url(
@@ -35,7 +33,6 @@
'module' => 'user',
'controller' => 'bootiso',
'action' => 'downloadbootiso',
- 'prebootID' => $bootiso->getprebootID(),
'bootisoID' => $bootiso->getID(),
'page' => $this->page
),