How can I remove the clear and change options from the filefield over here? I think I need to modify class ClearableFileInput(FileInput)
but I am not sure how. I have tried below-
class MyClearableFileInput(ClearableFileInput):
initial_text = ''
input_text = 'cha'
clear_checkbox_label = ''
to test if it changes the name and it does. I want to remove these fields.