urls.py 1.1 KB

123456789101112131415161718192021222324252627282930
  1. """core URL Configuration
  2. The `urlpatterns` list routes URLs to views. For more information please see:
  3. https://docs.djangoproject.com/en/4.1/topics/http/urls/
  4. Examples:
  5. Function views
  6. 1. Add an import: from my_app import views
  7. 2. Add a URL to urlpatterns: path('', views.home, name='home')
  8. Class-based views
  9. 1. Add an import: from other_app.views import Home
  10. 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
  11. Including another URLconf
  12. 1. Import the include() function: from django.urls import include, path
  13. 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
  14. """
  15. from django.contrib import admin
  16. from django.urls import path, include
  17. from django.conf.urls.static import static
  18. from django.conf import settings
  19. urlpatterns = (
  20. [
  21. path('admin/', admin.site.urls),
  22. path('', include('butler.urls')),
  23. path('captcha/', include('captcha.urls')),
  24. #path('pages/', include('django.contrib.flatpages.urls')),
  25. ]
  26. + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
  27. + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
  28. )