diff options
| author | Simon | 2011-03-05 13:28:13 +0100 |
|---|---|---|
| committer | Simon | 2011-03-05 13:28:13 +0100 |
| commit | 648f1ac9a60705a5a8ce0c6021657d9060cd45aa (patch) | |
| tree | a9b221cb64ccdd1583dc0991369473a9347a7421 /application/views/scripts | |
| parent | filterentriesmapper fürs löschen einzelner datensätze vorbereiten (diff) | |
| parent | .zfproject fix (diff) | |
| download | pbs2-648f1ac9a60705a5a8ce0c6021657d9060cd45aa.tar.gz pbs2-648f1ac9a60705a5a8ce0c6021657d9060cd45aa.tar.xz pbs2-648f1ac9a60705a5a8ce0c6021657d9060cd45aa.zip | |
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
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> + + + + |
