37107-vm/core/urls.py
Flatlogic Bot a6a31ecde0 0.2
2025-12-21 18:05:55 +00:00

7 lines
226 B
Python

from django.urls import path
from .views import IndexView, ArticleDetailView
urlpatterns = [
path("", IndexView.as_view(), name="index"),
path("article/<int:pk>", ArticleDetailView.as_view(), name="article_detail"),
]