Url content

This commit is contained in:
Luciano Gervasoni
2025-03-07 00:34:46 +01:00
parent 4453a51d6d
commit 54ebd58070
66 changed files with 2072 additions and 21 deletions

8
app_web/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'),]