When a user registers for my app.I receive this error when he reaches the profile page.
The \'image\' attribute has no file associated with it. Exception Typ
bob and person are the same object,
bob
person
person = Person.objects.get(user=request.user) bob = Person.objects.get(user=request.user)
So you can use just person for it.
In your template, check image exist or not first,
image
{% if person.image %} {% endif %}