I've got a field in my model of type FileField
. This gives me an object of type File
, which has the following method:
File.name
: The name of the file including the relative path fromMEDIA_ROOT
.
What I want is something like ".filename
" that will only give me the filename and not the path as well, something like:
{% for download in downloads %}
<div class="download">
<div class="title">{{download.file.filename}}</div>
</div>
{% endfor %}
Which would give something like myfile.jpg