12 lines
No EOL
286 B
Python
Executable file
12 lines
No EOL
286 B
Python
Executable file
from django.urls import path
|
|
from django.conf.urls.static import static
|
|
|
|
from passion_retro import settings
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("", views.home, name="home"),
|
|
]
|
|
|
|
if settings.DEBUG:
|
|
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) |