[Solved] How to hide location of image in django?


Using image = forms.ImageField(widget=forms.FileInput,) in forms

class ProfileUpdate(forms.ModelForm):
        image = forms.ImageField(widget=forms.FileInput,)
        class Meta:
            model = UserInfo
            fields = ('image', 'fullname', 'mobile', 'occupation', 'address', 'city', 'state', 'pincode')

solved How to hide location of image in django?