Xerror
Xerror copied to clipboard
Fix urls.py
According to the document django version >= 1.7 which is not support the following URL configuration
url(r'^media/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': settings.MEDIA_ROOT}),
so I fix it to
+ static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
at the end of url configuration
and also the require library.
from django.conf.urls.static import static