summaryrefslogtreecommitdiffstats
path: root/application/modules/user/views/scripts/preboot/index.phtml
diff options
context:
space:
mode:
Diffstat (limited to 'application/modules/user/views/scripts/preboot/index.phtml')
-rw-r--r--application/modules/user/views/scripts/preboot/index.phtml14
1 files changed, 9 insertions, 5 deletions
diff --git a/application/modules/user/views/scripts/preboot/index.phtml b/application/modules/user/views/scripts/preboot/index.phtml
index 21ff310..9e73de1 100644
--- a/application/modules/user/views/scripts/preboot/index.phtml
+++ b/application/modules/user/views/scripts/preboot/index.phtml
@@ -5,7 +5,7 @@
'class' => 'updatebutton',
))?>
<?php echo $this->formButton('createpreboot', 'Create PreBoot', array(
- 'onclick' => 'self.location="/user/preboot/createpreboot"',
+ 'onclick' => 'self.location="/user/preboot/createpreboot/page/'.$this->page.'"',
'class' => 'addbutton'))?>
<table>
<tr>
@@ -31,7 +31,8 @@
'module' => 'user',
'controller' => 'preboot',
'action' => 'updatepreboot',
- 'prebootID' => $preboot->getID()
+ 'prebootID' => $preboot->getID(),
+ 'page' => $this->page
),
'default',
true, false) ?>"><img src='/media/img/update.png' alt='Updates available' /></a></td>
@@ -43,7 +44,8 @@
'module' => 'user',
'controller' => 'preboot',
'action' => 'editpreboot',
- 'prebootID' => $preboot->getID()
+ 'prebootID' => $preboot->getID(),
+ 'page' => $this->page
),
'default',
true, false) ?>"><img src='/media/img/edit.png' alt='Edit Preboot' /></a></td>
@@ -52,10 +54,12 @@
'module' => 'user',
'controller' => 'preboot',
'action' => 'deletepreboot',
- 'prebootID' => $preboot->getID()
+ 'prebootID' => $preboot->getID(),
+ 'page' => $this->page
),
'default',
true) ?>"><img src='/media/img/delete.png' alt='Delete Preboot'/></a></td>
</tr>
<?php endforeach; ?>
-</table> \ No newline at end of file
+</table>
+<?php echo $this->pagination; ?>