17 lines
442 B
Python
17 lines
442 B
Python
"""
|
|
URL configuration for seduttomotorsports project.
|
|
"""
|
|
from django.urls import path
|
|
from . import views
|
|
from django.conf import settings
|
|
from django.conf.urls.static import static
|
|
|
|
urlpatterns = [
|
|
path('', views.quote_upload, name='quote_upload'),
|
|
]
|
|
|
|
if settings.DEBUG:
|
|
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|
|
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
|
|
|