I took a look at following SO question, but had no luck. I don\'t know, maybe I didn\'t understand the answers.
1) How to remove the “Currently” tag and link of a FileIn
You can change the widget used to render the form field by specifying it on initializing:
class SettingsForm(forms.ModelForm): company_logo = forms.ImageField(label=_('Company Logo'),required=False, \ error_messages ={'invalid':_("Image files only")},\ widget=FileInput)
See the docs for widgets.