Add a picture to the admin panel.
I click "Save and continue editing" the picture disappears. 
How to fix?
settings.py
STATICFILES_DIRS = (os.path.join(BASE_DIR, 'static'),) MEDIA_URL = '/media/' MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
URLS
from django.conf.urls.static import static from django.conf import settings urlpatterns = [.... ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
