# HG changeset patch # User Steve Losh # Date 1234466053 18000 # Node ID 3c20caba5321f8dd744264387b0155404848a78c # Parent a4cf6f60dd02b2566cd6a6e0851ef1df4df30721 Adjusted the blogs orphan value. diff -r a4cf6f60dd02 -r 3c20caba5321 blog/views.py --- a/blog/views.py Thu Feb 12 14:13:06 2009 -0500 +++ b/blog/views.py Thu Feb 12 14:14:13 2009 -0500 @@ -25,7 +25,7 @@ page = int(page) entries = Entry.objects.all().filter(published=True).order_by('-pub_date') - p = Paginator(entries, 7, orphans=4).page(page) + p = Paginator(entries, 7, orphans=3).page(page) return render_to_response('blog/list.html', { 'entries': p.object_list,