furmeet_events/webproj/urls.py

37 lines
1.3 KiB
Python

"""webproj URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/2.1/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from django.urls import include
from django.conf import settings
from django.conf.urls.static import static
from .views import TimezoneSetter, ServerError
from django.conf.urls import handler400, handler403, handler404, handler500
handler400 = ServerError(400)
handler403 = ServerError(403)
handler404 = ServerError(404)
handler500 = ServerError(500)
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('webproj.conventions.urls')),
]
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
urlpatterns += static('/', document_root=settings.STATIC_ROOT)