def random_post(request):
    posts_ids = Post.objects.all().values_list("id", flat=True)
    random_obj = Post.objects.get(id=random.choice(posts_ids))
    context = {'random_obj': random_obj,}
    return render(request, 'blog/random_post.html', context)

Is “”id”” actually post_id in my case?
This is a view right? not part of the model?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/b1080eca-fd1c-407f-bd26-46f3740a603f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to