views:

37

answers:

1

i have a miniblog application, with a class named New(refering 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?

Thanks in advance!

def paginate(request):
  paginator = New.objects.all()
  return render_to_response('news/newform.html', {
    'object_list': paginator,

    }, 
    context_instance=RequestContext(request)) 
A: 
if request.user.is_authenticated():
   paginator = New.objects.filter(user=request.user)

(If you haven't already, it's worth checking out the Django Book)

stevejalim