From c5ef8ee93d423ceb270311681fa09bfa495de78c Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Fri, 22 Oct 2010 14:20:10 +0200 Subject: [PATCH] Increase pagination threshold to 25 items. --- src/main/resources/templates/index.html | 2 +- src/main/resources/templates/knownSones.html | 2 +- src/main/resources/templates/viewSone.html | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/resources/templates/index.html b/src/main/resources/templates/index.html index a2b35b7..5c2fca0 100644 --- a/src/main/resources/templates/index.html +++ b/src/main/resources/templates/index.html @@ -4,7 +4,7 @@
<%getpage> - <%paginate list=posts pagesize=2> + <%paginate list=posts pagesize=25> <%= page|store key=pageParameter> <%include include/pagination.html> <%foreach pagination.items post> diff --git a/src/main/resources/templates/knownSones.html b/src/main/resources/templates/knownSones.html index 8a5afbd..b443e82 100644 --- a/src/main/resources/templates/knownSones.html +++ b/src/main/resources/templates/knownSones.html @@ -21,7 +21,7 @@
<%getpage parameter=page> - <%paginate list=knownSones pagesize=2> + <%paginate list=knownSones pagesize=25> <%= page|store key=pageParameter> <%include include/pagination.html> <%foreach pagination.items sone> diff --git a/src/main/resources/templates/viewSone.html b/src/main/resources/templates/viewSone.html index b1af3f8..a15eb8e 100644 --- a/src/main/resources/templates/viewSone.html +++ b/src/main/resources/templates/viewSone.html @@ -20,7 +20,7 @@
<%getpage parameter=postPage> - <%paginate list=sone.posts pagesize=2> + <%paginate list=sone.posts pagesize=25> <%= postPage|store key=pageParameter> <%include include/pagination.html> <%foreach pagination.items post> @@ -35,7 +35,7 @@
<%getpage parameter=sonePage> - <%paginate list=sone.friends pagesize=2> + <%paginate list=sone.friends pagesize=25> <%= sonePage|store key=pageParameter> <%include include/pagination.html> <%foreach pagination.items sone> -- 2.7.4