I am using the User model from django.contrib.auth.models. I have another model called Post which references User through a
User
django.contrib.auth.models
Post
Post.objects.filter(user=request.user).order_by('-timestamp')