I am relatively new to django. I am using ImageForm to get the image path from the user.
class EditProfileForm(ModelForm):
username = CharField(label='User Name', widget=TextInput(attrs={'class': 'form-control'}), required=True)
image = ImageField(label='Select Profile Image',required = False)
It displays the image widget as follows:

I want to rename shortcuts - Currently Clear and Change. [In principle, my whole page is not a lowercase letter, so I would like to make this label text lowercase as well, for example, now, clearly and change].
Is there any way to do this?
source
share