R u looking at the password from the admin?
Sivaram R <sivaram2...@gmail.com> wrote: I have views.py to show the form instance and update the instance. On edit the form data,all other field are showing the correct value,password field is showing the entire hashed value from database and not the entered password. Is any way to show the entered password instead of hashed value in database. forms.py class UserRegisterForm(forms.ModelForm): password = forms.CharField(widget=forms.PasswordInput(render_value=True)) class Meta: model = User 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, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. For more options, visit https://groups.google.com/groups/opt_out. -- 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 django-users+unsubscr...@googlegroups.com. To post to this group, send email to django-users@googlegroups.com. Visit this group at http://groups.google.com/group/django-users. For more options, visit https://groups.google.com/groups/opt_out.