Files
Flagman/student/urls.py
Dmitriy 60b4e0e839 init
2025-06-23 01:24:34 +03:00

15 lines
645 B
Python

from django.urls import path
from . import views
app_name = 'student'
urlpatterns = [
path('', views.student_list, name='list'),
path('<int:pk>/', views.student_detail, name='detail'),
path('<int:pk>/schedule/', views.student_schedule, name='schedule'),
path('progress/', views.student_progress, name='student_progress'),
path('profile/', views.student_profile, name='student_profile'),
path('profile/edit/', views.edit_student_profile, name='edit_student_profile'),
path('lessons/', views.lesson_list, name='student_lesson_list'),
path('lesson/<int:pk>/', views.lesson_detail, name='student_lesson_detail'),
]