Issue
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))
Solution
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)
Answered By - Steve Jalim
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.