I have a django project based on django 1.11.
I uploaded media files and try to get them but instead I get nothong.
I read documentation and did exactly as it said.
Also I checked 'media' foleder permissions.
settings.py:
MEDIA_URL = "/media/"
MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
urls.py:
from django.conf import settings
from django.conf.urls.static import static
urlpatterns = [
url(r'^admin/', admin.site.urls),
url(r'^', include('myapp.urls')),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)