diff options
| author | Simon | 2011-03-09 12:18:37 +0100 |
|---|---|---|
| committer | Simon | 2011-03-09 12:18:37 +0100 |
| commit | f9c1433a5f71e00dffc183f04ee085ae1498901a (patch) | |
| tree | 29086995448a1a00f4e044a6954fdcbc833f42a5 /application/views/scripts/bootmenu/index.phtml | |
| parent | Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2 (diff) | |
| download | pbs2-f9c1433a5f71e00dffc183f04ee085ae1498901a.tar.gz pbs2-f9c1433a5f71e00dffc183f04ee085ae1498901a.tar.xz pbs2-f9c1433a5f71e00dffc183f04ee085ae1498901a.zip | |
oberfläche verändert
Diffstat (limited to 'application/views/scripts/bootmenu/index.phtml')
| -rw-r--r-- | application/views/scripts/bootmenu/index.phtml | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/application/views/scripts/bootmenu/index.phtml b/application/views/scripts/bootmenu/index.phtml index 70bb134..7e3a92e 100644 --- a/application/views/scripts/bootmenu/index.phtml +++ b/application/views/scripts/bootmenu/index.phtml @@ -11,9 +11,10 @@ <th>GroupID</th> <th>MembershipID</th> <th>Changed</th> + <th colspan=3>Actions</th> </tr> <?php foreach ($this->bootmenulist as $bootmenu): ?> - <tr class=bootmenu> + <tr class=entry> <td><?php echo $this->escape($bootmenu->getID()); ?></td> <td><?php echo $this->escape($bootmenu->getTitle()); ?></td> <td><?php echo $this->escape($bootmenu->getGroupID()); ?></td> @@ -45,18 +46,23 @@ 'default', true) ?>">Add Entry</a></td> </tr> - <tr> - <th></th> +<?php if(count($this->bootmenuentrylist[$bootmenu->getID()]) > 0):?> + <tr class=detail> + <td></td> + <td colspan=7> + <table> + <tr> <th>ID</th> <th>Title</th> <!-- <th>BootmenuID</th>--> <th>BootOSID</th> <th>kcl</th> <th>ConfigID</th> - <th>order</th> + <th>order</th> + <th colspan=2>Actions</th> </tr> <?php foreach ($this->bootmenuentrylist[$bootmenu->getID()] as $bootmenuentry): ?> - <tr class=bootentry><td class=nostyle></td> + <tr> <td><?php echo $this->escape($bootmenuentry->getID()); ?></td> <td><?php echo $this->escape($bootmenuentry->getTitle()); ?></td> <!--<td><?php echo $this->escape($bootmenuentry->getBootmenuID()); ?></td> @@ -85,6 +91,10 @@ true) ?>">Remove Entry</a></td> </tr> <?php endforeach; ?> + </table> + </td> + </tr> + <?php endif; ?> <?php endforeach; ?> </table> |
