Django 1.9 error - 'User' object has no attribute 'profile'
You haven't set any related_name attribute on that one-to-one field, so the reverse accessor will be called userprofile
not profile
.
You haven't set any related_name attribute on that one-to-one field, so the reverse accessor will be called userprofile
not profile
.