I am trying to get an image to appear using Django template.
In settings I have:
MEDIA_ROOT = 'C:/workspace/mysite/uploaded_media/'
MEDIA_URL = 'http://localhost:8000/mysite/media/'
The html is
<img source = "http://localhost:8000/mysite/media/blabla.jpg"></img>
I have an image file blabla.jpg in the folder uploaded_media
What am I missing here?
Edit: first problem was writing "source" instead of "src" in the tag. doh. (attempting the answer below right now.)