39005-vm/core/urls.py
2026-03-05 11:02:47 +00:00

11 lines
339 B
Python

from django.urls import path
from . import views
app_name = 'core'
urlpatterns = [
path('', views.home, name='home'),
path('scene/<int:scene_id>/', views.scene_view, name='scene_detail'),
path('scene/', views.scene_view, name='current_scene'),
path('choose/<int:choice_id>/', views.choose_action, name='choose_action'),
]