diff options
Diffstat (limited to 'application/views/scripts')
4 files changed, 41 insertions, 0 deletions
diff --git a/application/views/scripts/bootos/createbootos.phtml b/application/views/scripts/bootos/createbootos.phtml new file mode 100644 index 0000000..3d35695 --- /dev/null +++ b/application/views/scripts/bootos/createbootos.phtml @@ -0,0 +1,4 @@ +<?php +$this->createbootosForm->setAction($this->url()); +echo $this->createbootosForm; +?> diff --git a/application/views/scripts/bootos/deletebootos.phtml b/application/views/scripts/bootos/deletebootos.phtml new file mode 100644 index 0000000..4893fbc --- /dev/null +++ b/application/views/scripts/bootos/deletebootos.phtml @@ -0,0 +1 @@ +<br /><br /><center>View script for controller <b>Bootos</b> and script/action name <b>deletebootos</b></center>
\ No newline at end of file diff --git a/application/views/scripts/bootos/editbootos.phtml b/application/views/scripts/bootos/editbootos.phtml new file mode 100644 index 0000000..f36d3d0 --- /dev/null +++ b/application/views/scripts/bootos/editbootos.phtml @@ -0,0 +1 @@ +<br /><br /><center>View script for controller <b>Bootos</b> and script/action name <b>editbootos</b></center>
\ No newline at end of file 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> + + + + |
