diff options
| author | Simon | 2011-04-01 13:26:21 +0200 |
|---|---|---|
| committer | Simon | 2011-04-01 13:26:21 +0200 |
| commit | 44a1b6252585aae23c7b0b444eb6a812753bd44e (patch) | |
| tree | a2cf86fa205f976c7ca0f96832effa957d1e577f /application/modules/user/views/scripts | |
| parent | Merge branch 'master' of ssh://git.openslx.org/lsfks/master-teamprojekt/pbs2 (diff) | |
| download | pbs2-44a1b6252585aae23c7b0b444eb6a812753bd44e.tar.gz pbs2-44a1b6252585aae23c7b0b444eb6a812753bd44e.tar.xz pbs2-44a1b6252585aae23c7b0b444eb6a812753bd44e.zip | |
Pagination in Bootiso
Diffstat (limited to 'application/modules/user/views/scripts')
| -rw-r--r-- | application/modules/user/views/scripts/bootiso/index.phtml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/application/modules/user/views/scripts/bootiso/index.phtml b/application/modules/user/views/scripts/bootiso/index.phtml index 4e1d15d..ce0d8ce 100644 --- a/application/modules/user/views/scripts/bootiso/index.phtml +++ b/application/modules/user/views/scripts/bootiso/index.phtml @@ -35,7 +35,8 @@ 'controller' => 'bootiso', 'action' => 'downloadbootiso', 'prebootID' => $bootiso->getprebootID(), - 'bootisoID' => $bootiso->getID() + 'bootisoID' => $bootiso->getID(), + 'page' => $this->page ), 'default', true, false) ?>"><img src='/media/img/download.png' alt='Download BootMedium' /></a></td> @@ -44,7 +45,8 @@ 'module' => 'user', 'controller' => 'bootiso', 'action' => 'editbootiso', - 'bootisoID' => $bootiso->getID() + 'bootisoID' => $bootiso->getID(), + 'page' => $this->page ), 'default', true, false) ?>"><img src='/media/img/edit.png' alt='Edit BootISO' /></a></td> @@ -53,13 +55,15 @@ 'module' => 'user', 'controller' => 'bootiso', 'action' => 'deletebootiso', - 'bootisoID' => $bootiso->getID() + 'bootisoID' => $bootiso->getID(), + 'page' => $this->page ), 'default', true) ?>"><img src='/media/img/delete.png' alt='Delete BootISO'/></a></td> </tr> <?php endforeach; ?> </table> +<?php echo $this->pagination; ?> |
