35423-vm/core/urls.py
Flatlogic Bot b7f4c6b9fa 1.1
2025-11-02 16:46:22 +00:00

8 lines
192 B
Python

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