Files
green_classroom/core/urls.py

13 lines
595 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('', views.article_list, name='article_list'),
path('article/<int:article_id>/', views.article_detail, name='article_detail'),
path('run-crawler/', views.run_crawler, name='run_crawler'),
path('crawler-status/', views.crawler_status, name='crawler_status'),
path('pause-crawler/', views.pause_crawler, name='pause_crawler'),
path('export-articles/', views.export_articles, name='export_articles'),
path('export-articles-by-type/', views.export_articles_by_type, name='export_articles_by_type'),
]