SyntaxFix
Write A Post
Hire A Developer
Questions
This is what I did to achieve image rendering in DEBUG = False mode in Python 3.6 with Django 1.11
from django.views.static import serve urlpatterns = [ url(r'^media/(?P<path>.*)$', serve,{'document_root': settings.MEDIA_ROOT}), # other paths ]