aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2013-01-09 22:43:57 +0100
committerMarcin Kuzminski <marcin@python-works.com>2013-01-09 22:43:57 +0100
commit8dee834b616316a64dae3a831d8a7c976b848d79 (patch)
tree7384f66264a4e7b59b611246ec2a6deb21234433
parent96bc58766f58d0e2070aab36b6c15672e9876286 (diff)
fixes issues with groups paginator
--HG-- branch : beta
-rw-r--r--rhodecode/templates/index_base.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/rhodecode/templates/index_base.html b/rhodecode/templates/index_base.html
index dbe7d87d..ccfe7ec8 100644
--- a/rhodecode/templates/index_base.html
+++ b/rhodecode/templates/index_base.html
@@ -51,9 +51,9 @@
##<td><b>${gr.repositories_recursive_count}</b></td>
</tr>
% endfor
-
</table>
</div>
+ <div id="group-user-paginator" style="padding: 0px 0px 0px 0px"></div>
<div style="height: 20px"></div>
% endif
<div id="welcome" style="display:none;text-align:center">
@@ -148,7 +148,7 @@
var myDataTable = new YAHOO.widget.DataTable("groups_list_wrap", myColumnDefs, myDataSource,{
sortedBy:{key:"name",dir:"asc"},
paginator: new YAHOO.widget.Paginator({
- rowsPerPage: 5,
+ rowsPerPage: 50,
alwaysVisible: false,
template : "{PreviousPageLink} {FirstPageLink} {PageLinks} {LastPageLink} {NextPageLink}",
pageLinks: 5,
@@ -159,7 +159,7 @@
previousPageLinkLabel: '&lt;',
firstPageLinkLabel: '&lt;&lt;',
lastPageLinkLabel: '&gt;&gt;',
- containers:['user-paginator']
+ containers:['group-user-paginator']
}),
MSG_SORTASC:"${_('Click to sort ascending')}",
MSG_SORTDESC:"${_('Click to sort descending')}"