[Answered ]-Images not showing on Django App

1👍

👤Rohan

1👍

You may also need to update your projects urls.py with the following:

(r'^media/(?P<path>.*)$', 'django.views.static.serve', {
'document_root': settings.MEDIA_ROOT})

Leave a comment