In my settings I have
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
MEDIA_URL = '/media/'
my uploaded files are saved in media folder..
In my template now I want to access these files
<img src="{{MEDIA_URL}}{{file.my_file}}" width="100" height="100" /></a>
When I do this its not showing the images or file.How can I get the file.. What should I use ?