36975-vm/core/urls.py
2025-12-16 09:52:29 +00:00

11 lines
214 B
Python

from django.urls import path
from .views import index, problem_detail
app_name = "core"
urlpatterns = [
path("", index, name="index"),
path("problem/<int:pk>/", problem_detail, name="problem_detail"),
]