urls.py 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. """
  2. URL configuration for content_quality_tool project.
  3. The `urlpatterns` list routes URLs to views. For more information please see:
  4. https://docs.djangoproject.com/en/5.2/topics/http/urls/
  5. Examples:
  6. Function views
  7. 1. Add an import: from my_app import views
  8. 2. Add a URL to urlpatterns: path('', views.home, name='home')
  9. Class-based views
  10. 1. Add an import: from other_app.views import Home
  11. 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
  12. Including another URLconf
  13. 1. Import the include() function: from django.urls import include, path
  14. 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
  15. """
  16. from django.contrib import admin
  17. from django.urls import path
  18. from django.urls import path, include
  19. from content_quality_tool_public import views as content_views
  20. from video_generator import views as video_views
  21. # from template import views
  22. urlpatterns = [
  23. path('admin/', admin.site.urls),
  24. path("", content_views.login_view, name="login_view"),
  25. path('', include('content_quality_tool_public.urls')), # Your app's routes
  26. path('video/', include('video_generator.urls')), # Your app's routes
  27. # api url
  28. path("core/", include("core.urls")),
  29. path("attr/", include("attr_extraction.urls")),
  30. # path("", views.login_view, name="login_view"),
  31. ]