10 lines
304 B
Python
10 lines
304 B
Python
from django.conf import settings
|
|
from django.conf.urls.static import static
|
|
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.home, name='home'),
|
|
path('games/', views.games, name='games'),
|
|
path('games/<str:game_name>/', views.game_detail, name='game_detail'),
|
|
] |