From: Michael Elsdoerfer Date: Mon, 6 Oct 2008 12:23:47 +0000 (+0200) Subject: the pagination example still wasn't quite right (thanks again, robert) X-Git-Tag: 0.2~37 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=89746b51e967cdd80c2a5a8540861569e3f3d0e2;p=django-tables2.git the pagination example still wasn't quite right (thanks again, robert) --- 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