Skip to content

Commit

Permalink
Added paging to all pages
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Mar 10, 2021
1 parent 7a7e249 commit c37da77
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions View/GrouperGroups/groupmember.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
<?php echo $this->element('GrouperLite.Components/navigation-groups', array('active' => 'groupmember')); ?>
<?php echo $this->element('GrouperLite.Components/search', array('active' => 'groupmember')); ?>
<div class="">
<?php print $this->element("pagination", array(
'goto' => false,
'limit' => false,
'numbers' => false,
'counter' => true,
'class' => 'counter'
)); ?>
<table class="table table-striped w-100">
<thead>
<tr>
Expand Down
7 changes: 7 additions & 0 deletions View/GrouperGroups/groupowner.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
<?php echo $this->element('Components/navigation-groups', array('active' => 'groupowner')); ?>
<?php echo $this->element('Components/search', array('active' => 'groupowner')); ?>
<div class="">
<?php print $this->element("pagination", array(
'goto' => false,
'limit' => false,
'numbers' => false,
'counter' => true,
'class' => 'counter'
)); ?>
<table class="table table-striped w-100">
<thead>
<tr>
Expand Down

0 comments on commit c37da77

Please sign in to comment.