Base setup
This commit is contained in:
8
crawler/urls.py
Normal file
8
crawler/urls.py
Normal file
@@ -0,0 +1,8 @@
|
||||
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'),
|
||||
]
|
||||
Reference in New Issue
Block a user