I\'m a beginner in Django. I need to setup a website, where each user has a profile page. I\'ve seen django admin. The profile page for users, should store some information whic
You can
AUTH_PROFILE_MODULE='yourprofileapp.ProfileModel'
to settings.pyIn profile editing view, allow only logged in users to edit their own profiles
example:
@login_required
def edit_profile(request):
'''
edit profile of logged in user i.e request.user
'''
You can also make sure that whenever new user is created the user's profile is also created using django's signals
Read about storing additional information about users from django documentation