Answer the question
In order to leave comments, you need to log in
How to write posts on your account page?
Hello, how can I add the ability for authorized users to write posts in their profile?
I will be glad for any help
#models.py
class Profile(models.Model):
user = models.OneToOneField(settings.AUTH_USER_MODEL, on_delete=models.CASCADE)
#views.py
def user_detail(request, username):
user = get_object_or_404(User, username=username, is_active=True)
return render(request, 'account/user_detail.html', {'user': user})
Answer the question
In order to leave comments, you need to log in
Post
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question