summaryrefslogtreecommitdiffstats
path: root/application/modules/user/views/scripts/bootos/index.phtml
diff options
context:
space:
mode:
Diffstat (limited to 'application/modules/user/views/scripts/bootos/index.phtml')
-rw-r--r--application/modules/user/views/scripts/bootos/index.phtml12
1 files changed, 8 insertions, 4 deletions
diff --git a/application/modules/user/views/scripts/bootos/index.phtml b/application/modules/user/views/scripts/bootos/index.phtml
index 53d219f..92e6bbb 100644
--- a/application/modules/user/views/scripts/bootos/index.phtml
+++ b/application/modules/user/views/scripts/bootos/index.phtml
@@ -1,7 +1,7 @@
<h1>BootOS</h1>
<?php if($this->notification != ''){echo $this->notification;} ?>
<?php echo $this->formButton('checkupdate', 'Check for Updates', array(
- 'onclick' => 'self.location="/user/bootos/index/checkupdate/true"',
+ 'onclick' => 'self.location="/user/bootos/index/page/'.$this->page.'/checkupdate/true"',
'class' => 'updatebutton',
))?>
<?php echo $this->formButton('createbootos', 'Create BootOS', array(
@@ -47,7 +47,8 @@
'module' => 'user',
'controller' => 'bootos',
'action' => 'updatebootos',
- 'bootosID' => $bootos->getID()
+ 'bootosID' => $bootos->getID(),
+ 'page' => $this->page
),
'default',
true, false) ?>"><img src='/media/img/update.png' alt='Updates available' /></a></td>
@@ -60,7 +61,8 @@
'module' => 'user',
'controller' => 'bootos',
'action' => 'editbootos',
- 'bootosID' => $bootos->getID()
+ 'bootosID' => $bootos->getID(),
+ 'page' => $this->page
),
'default',
true, false) ?>"><img src='/media/img/edit.png' alt='Edit BootOS' /></a></td>
@@ -70,13 +72,15 @@
'module' => 'user',
'controller' => 'bootos',
'action' => 'deletebootos',
- 'bootosID' => $bootos->getID()
+ 'bootosID' => $bootos->getID(),
+ 'page' => $this->page
),
'default',
true) ?>"><img src='/media/img/delete.png' alt='Delete BootOS' /></a></td>
</tr>
<?php endforeach; ?>
</table>
+<?php echo $this->pagination; ?>