I have a miniblog application, with a class named New (referring to a new post), having a foreign key to an user(who has posted the entry).
above I have a method that displays all the posts from all the users.
I’d like to show to the logged in user only his posts.
How can I do it?
def paginate(request):
paginator = New.objects.all()
return render_to_response('news/newform.html', {
'object_list': paginator,
},
context_instance=RequestContext(request))
(If you haven’t already, it’s worth checking out the Django Book)