You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
373 B
9 lines
373 B
from django.urls import path, include
|
|
|
|
from .views import LiveLessonsView, LiveLessonEditView, LiveLessonsDetailView
|
|
|
|
urlpatterns = [
|
|
path('lessons/', LiveLessonsView.as_view(), name='lessons'),
|
|
path('lessons/<int:pk>/edit', LiveLessonEditView.as_view(), name='lessons-edit'),
|
|
path('lessons/<int:pk>/', LiveLessonsDetailView.as_view(), name='lesson-detail'),
|
|
]
|
|
|