Refactor searches, env vars fetcher config, urls webpage update

This commit is contained in:
Luciano Gervasoni
2025-04-02 18:45:43 +02:00
parent 077219fcb6
commit 84da104dc8
22 changed files with 676 additions and 1521 deletions

View File

@@ -4,9 +4,9 @@ from . import views
urlpatterns = [
path('', views.link_list, name='link_list'),
#
path('logs_debug', views.logs_debug, name='logs_debug'),
path('logs_info', views.logs_info, name='logs_info'),
path('logs_error', views.logs_error, name='logs_error'),
path('logs/<str:log_type>', views.logs, name='logs'),
#
path('task/<str:task>', views.trigger_task, name='trigger_task'),
#
path('charts/', views.charts, name='charts'),
path('urls-by-fetch-date/', views.urls_by_fetch_date, name='urls_by_fetch_date'),
@@ -17,10 +17,4 @@ urlpatterns = [
path('urls/', views.filtered_urls, name='filtered_urls'),
path('urls/<int:id>/', views.url_detail_view, name='url_detail'),
path('urls/<int:id>/fetch/', views.fetch_details, name='fetch_details'),
#
#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'),
]