Skip to content
Advertisement

Auto Fill User In Django Form

In my project as soon as user signup it is redirected to update view where he has to fill this information.Since the user has also logged in automatically after signup I want that user field to be filled automatically and can’t be edited.

models.py

JavaScript

forms.py

JavaScript

views.py

JavaScript

All the required libraries are imported.

Advertisement

Answer

You can use widgets for your form. Something like this(code below is not tested).

JavaScript

Edited: we should pass user inside dict like this: form = UserProForm({'user': request.user})

Edited 2: You should find profile object first and then pass it to the form

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement