From 89746b51e967cdd80c2a5a8540861569e3f3d0e2 Mon Sep 17 00:00:00 2001 From: Michael Elsdoerfer Date: Mon, 6 Oct 2008 14:23:47 +0200 Subject: [PATCH] the pagination example still wasn't quite right (thanks again, robert) --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index 6c83294..71ca0c9 100644 --- a/README +++ b/README @@ -369,7 +369,7 @@ works as expected. Alternatively, you may use the ``paginate`` feature: table = MyTable(queryset) - table.paginate(QuerySetPaginator, 10, page=1, padding=2) + table.paginate(Paginator, 10, page=1, orphans=2) for row in table.rows.page(): pass table.paginator # new attributes -- 2.26.2