This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from django.conf import settings | |
| from django.conf.urls.static import static | |
| urlpatterns = [ | |
| # Project url patterns... | |
| ] | |
| if settings.DEBUG: | |
| urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) |