managing media in django
#in base url from django.conf import settings from django.conf.urls.static import static urlpatterns = [ # ... the rest of your URLconf goes here ... ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) #in setting MEDIA_URL='/media/ MEDIA_ROOT=BASE_DIR / 'media'