Files
icac/crawler/urls.py
2025-09-23 13:30:03 +08:00

8 lines
298 B
Python

from django.urls import path, include
from . import views
urlpatterns = [
path('', views.dashboard, name='dashboard'),
path('search/', views.search_page, name='search'),
path('crawled-content/<int:content_id>/preview/', views.preview_crawled_content, name='preview_crawled_content'),
]