| 1234567891011121314151617181920212223242526272829303132333435 |
- """
- URL configuration for content_quality_tool project.
- The `urlpatterns` list routes URLs to views. For more information please see:
- https://docs.djangoproject.com/en/5.2/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 path, include
- from content_quality_tool_public import views as content_views
- from video_generator import views as video_views
- # from template import views
- urlpatterns = [
- path('admin/', admin.site.urls),
- path("", content_views.login_view, name="login_view"),
- path('', include('content_quality_tool_public.urls')), # Your app's routes
- path('video/', include('video_generator.urls')), # Your app's routes
- # api url
- path("core/", include("core.urls")),
- path("attr/", include("attr_extraction.urls")),
- # path("", views.login_view, name="login_view"),
- ]
|