7 lines
177 B
Python
7 lines
177 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.dashboard, name='dashboard'),
|
|
path('players/', views.player_list, name='player_list'),
|
|
] |