11 lines
339 B
Python
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'),
|
|
] |