[Fixed]-Django imageField url on html 14 December 2023 by thecoderscamp.com 1👍 ✅ You would need to define MEDIA_ROOT as mentioned here From Django officaal Docs: urlpatterns = [ # ... the rest of your URLconf goes here ... ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) You can also have a look at this. 👤Niyojan Django Breakpoints Not Working PyCharm Source:stackexchange.com