8 lines
173 B
Python
8 lines
173 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.index, name='index'),
|
|
path('test/', views.view_score_stuff, name='score_stuff'),
|
|
]
|