ListView , Need Help !

2021-04-03 Thread Mustafa Burhani
When i create blog post they are aligned vertical i want align be horizontal how i can do ? For Example : # Vertical Post # Vertical Post # Vertical Post # Vertical Post I want be : # horizontal Post # horizontal Post # horizontal Post # hori

How Choose Random User from database ?

2021-04-19 Thread Mustafa Burhani
I want to Choose random user from databse is possible with django shell or need to create model ? for random function ? Thanks ! -- 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,

RE: How Choose Random User from database ?

2021-04-19 Thread mustafa burhani
you want. Example: import randomusers = User.objects.all() #a list of all usersrandom_user = random.choice(users) #a random user On Mon, Apr 19, 2021 at 20:45 Mustafa Burhani <mustafaburhan...@gmail.com> wrote:I want to Choose random user from databse is possible with django shell or need to