Files
icac/crawler/urls.py

9 lines
419 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'),
path('crawled-content/<int:content_id>/download/', views.download_crawled_content, name='download_crawled_content'),
]