summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/bootos/index.phtml
diff options
context:
space:
mode:
authormichael pereira2011-03-05 13:12:23 +0100
committermichael pereira2011-03-05 13:12:23 +0100
commit92e5b7a7b6bb780ef5e788b7711f8a999ac80f41 (patch)
tree9886c2229205ea8478e9a0bf0ca9fc5fb8de68e8 /application/views/scripts/bootos/index.phtml
parentMerge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2 (diff)
downloadpbs2-92e5b7a7b6bb780ef5e788b7711f8a999ac80f41.tar.gz
pbs2-92e5b7a7b6bb780ef5e788b7711f8a999ac80f41.tar.xz
pbs2-92e5b7a7b6bb780ef5e788b7711f8a999ac80f41.zip
bootos v1
Diffstat (limited to 'application/views/scripts/bootos/index.phtml')
-rw-r--r--application/views/scripts/bootos/index.phtml35
1 files changed, 35 insertions, 0 deletions
diff --git a/application/views/scripts/bootos/index.phtml b/application/views/scripts/bootos/index.phtml
new file mode 100644
index 0000000..2fef182
--- /dev/null
+++ b/application/views/scripts/bootos/index.phtml
@@ -0,0 +1,35 @@
+<h1>BootOS</h1>
+<table border=1>
+ <tr>
+ <th>ID</th>
+ <th>Title</th>
+ <th>GroupID</th>
+ <th>ConfigID</th>
+ <th>Init</th>
+ <th>Kernel</th>
+ <th>Kcl</th>
+ <th>Description</th>
+ <th>Created</th>
+ <th>Expires</th>
+ <th>Public</th>
+ </tr>
+ <?php foreach ($this->bootoslist as $bootos): ?>
+ <tr>
+ <td><?php echo $bootos->getID(); ?></td>
+ <td><?php echo $bootos->getTitle(); ?></td>
+ <td><?php echo $bootos->getGroupID(); ?></td>
+ <td><?php echo $bootos->getConfigID(); ?></td>
+ <td><?php echo $bootos->getPath_init(); ?></td>
+ <td><?php echo $bootos->getPath_kernel(); ?></td>
+ <td><?php echo $bootos->getDefaultkcl(); ?></td>
+ <td><?php echo $bootos->getDescription(); ?></td>
+ <td><?php echo $bootos->getCreated(); ?></td>
+ <td><?php echo $bootos->getExpires(); ?></td>
+ <td><?php echo $bootos->getPublic(); ?></td>
+ </tr>
+ <?php endforeach; ?>
+</table>
+
+
+
+