This commit is contained in:
Luciano Gervasoni
2025-03-06 21:53:04 +01:00
parent a65d4a4289
commit 4453a51d6d
50 changed files with 1916 additions and 0 deletions

8
web_app/news/urls.py Normal file
View File

@@ -0,0 +1,8 @@
from django.urls import path
from . import views
urlpatterns = [
path("", views.news, name="home"),
path('url/<int:id>/', views.url_detail_view, name='url_detail'),
path('url/<int:id>/fetch/', views.fetch_details, name='fetch_details'),]