URLs view refactor, article exception handling, visualize logs, charts

This commit is contained in:
Luciano Gervasoni
2025-03-26 14:28:57 +01:00
parent 9d2550b374
commit e1f4787119
8 changed files with 739 additions and 9 deletions

View File

@@ -3,8 +3,20 @@ from . import views
urlpatterns = [
path('', views.link_list, name='link_list'),
#
path('logs', views.logs, name='logs'),
path('logs_error', views.logs_error, name='logs_error'),
#
path('charts/', views.charts, name='charts'),
path('urls-by-fetch-date/', views.urls_by_fetch_date, name='urls_by_fetch_date'),
path('urls-per-status/', views.urls_per_status, name='urls_per_status'),
path('urls-per-source/', views.urls_per_source, name='urls_per_source'),
path('urls-per-search/', views.urls_per_search, name='urls_per_search'),
#
path('filtered-urls/', views.filtered_urls, name='filtered_urls'),
#
path('url/', views.urls, name='url_detail'),
path('url/<int:id>/', views.url_detail_view, name='url_detail'),
path('url/<int:id>/fetch/', views.fetch_details, name='fetch_details'),
path('task/<str:task>', views.trigger_task, name='trigger_task'),
path('task/<str:task>', views.trigger_task, name='trigger_task'),
]