9 lines
147 B
Python
9 lines
147 B
Python
from django.urls import path
|
|
|
|
from .views import IndexView, index
|
|
|
|
urlpatterns = [
|
|
path("", index),
|
|
path("class/", IndexView.as_view()),
|
|
]
|