Userena: How Can I Get The Fields In "edit Profile" To Save
I have a user I have successfully registered in userena. When I view the profile, the information entered in during signup is properly displayed. I click 'edit profile' and am pres
I found the problem. It looks like I can allow for a blank field with the following change.
Old Code:
favourite_snack = models.CharField(_('favourite snack'),
max_length=5)
New Code:
favourite_snack = models.CharField(_('favourite snack'),
max_length=5, blank=True)
Post a Comment for "Userena: How Can I Get The Fields In "edit Profile" To Save"