diff options
| author | Simon | 2011-04-05 17:42:14 +0200 |
|---|---|---|
| committer | Simon | 2011-04-05 17:42:14 +0200 |
| commit | b79d364ac6c97210b0023d8a27121f9ceeed94ed (patch) | |
| tree | 8999d51c3e7610baca6553c79b2e562f5a96c2e3 /application/modules/user/views/scripts | |
| parent | globales Datumsformat (diff) | |
| parent | Merge branch 'master' of ssh://git.openslx.org/lsfks/master-teamprojekt/pbs2 (diff) | |
| download | pbs2-b79d364ac6c97210b0023d8a27121f9ceeed94ed.tar.gz pbs2-b79d364ac6c97210b0023d8a27121f9ceeed94ed.tar.xz pbs2-b79d364ac6c97210b0023d8a27121f9ceeed94ed.zip | |
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
Diffstat (limited to 'application/modules/user/views/scripts')
6 files changed, 9 insertions, 3 deletions
diff --git a/application/modules/user/views/scripts/group/show.phtml b/application/modules/user/views/scripts/group/show.phtml index 9777b21..12c149f 100644 --- a/application/modules/user/views/scripts/group/show.phtml +++ b/application/modules/user/views/scripts/group/show.phtml @@ -122,6 +122,7 @@ if($this->groupID) { } ?> </table> + <?php echo $this->memberPagination; ?> <?php } } diff --git a/application/modules/user/views/scripts/group/showall.phtml b/application/modules/user/views/scripts/group/showall.phtml index e58e762..34f3e11 100644 --- a/application/modules/user/views/scripts/group/showall.phtml +++ b/application/modules/user/views/scripts/group/showall.phtml @@ -73,6 +73,7 @@ } ?> </table> +<?php echo $this->pagination; ?> <?php echo $this->formButton('linkgroups', 'Link Groups', array( 'onclick' => 'self.location="/user/group/link"', 'class' => 'addbutton')) diff --git a/application/modules/user/views/scripts/person/index.phtml b/application/modules/user/views/scripts/person/index.phtml index 715bd95..824e7fb 100644 --- a/application/modules/user/views/scripts/person/index.phtml +++ b/application/modules/user/views/scripts/person/index.phtml @@ -61,7 +61,8 @@ if(isset($this->groups)) { } ?> </table> - <?php if($this->groupRequestRight === true) echo $this->formButton('addtogroup', 'Add to additional + <?php echo $this->pagination; + if($this->groupRequestRight === true) echo $this->formButton('addtogroup', 'Add to additional Groups', array( 'onclick' => 'self.location="/user/person/request/"', 'class' => 'addbutton')); diff --git a/application/modules/user/views/scripts/person/show.phtml b/application/modules/user/views/scripts/person/show.phtml index a380b3c..be973b9 100644 --- a/application/modules/user/views/scripts/person/show.phtml +++ b/application/modules/user/views/scripts/person/show.phtml @@ -41,7 +41,7 @@ if(isset($this->groups)) { } ?> </table> - <?php + <?php echo $this->pagination; } ?> <br /> diff --git a/application/modules/user/views/scripts/person/showall.phtml b/application/modules/user/views/scripts/person/showall.phtml index 68e9e7c..d605f70 100644 --- a/application/modules/user/views/scripts/person/showall.phtml +++ b/application/modules/user/views/scripts/person/showall.phtml @@ -115,3 +115,6 @@ } ?> </table> + <?php echo $this->pagination; ?> +<br /> +<br /> diff --git a/application/modules/user/views/scripts/role/index.phtml b/application/modules/user/views/scripts/role/index.phtml index a0b4284..8ca2bd6 100644 --- a/application/modules/user/views/scripts/role/index.phtml +++ b/application/modules/user/views/scripts/role/index.phtml @@ -54,7 +54,7 @@ if($this->userIDsNamespace['groupID']) { } ?> </table> - <?php + <?php echo $this->pagination; } ?> <br /> |
