I have a model form with
file1=forms.FileFiled(required=False)
the template shows it fine, with the default widget when using {{ f.file1 }}
if the form has data from an instance, how can I know the file name and url in the template?
I would like to serve the file myself with a function instead of how django shows it in the template, which does not work.