from django.conf import settings from django.conf.urls.static import static urlpatterns = [ # ... les teves URLs existents ... ] if settings.DEBUG: urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)