Add order and grade for course problems

This commit is contained in:
anhkha2003 2024-09-03 02:43:13 -05:00
parent 67888bcd27
commit 3a8fb61aa5
10 changed files with 482 additions and 102 deletions

View file

@ -564,6 +564,11 @@ urlpatterns = [
course.CourseStudentResults.as_view(),
name="course_grades",
),
url(
r"^/grades/lesson/(?P<id>\d+)$",
course.CourseStudentResultsLesson.as_view(),
name="course_grades_lesson",
),
]
),
),