Files
matitos_news/web_app/news/urls.py
Luciano Gervasoni 4453a51d6d Web app
2025-03-06 21:53:04 +01:00

9 lines
252 B
Python

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