Add GP Ranking

This commit is contained in:
anhkha2003 2023-10-06 03:52:14 -05:00
parent 509d1ba2f9
commit 47f811fbd5
10 changed files with 223 additions and 4 deletions

View file

@ -517,6 +517,11 @@ urlpatterns = [
),
),
url(r"^contests/", paged_list_view(contests.ContestList, "contest_list")),
url(
r"^contests/summary/(?P<key>\w+)$",
contests.contests_summary_view,
name="contests_summary",
),
url(r"^course/", paged_list_view(course.CourseList, "course_list")),
url(
r"^contests/(?P<year>\d+)/(?P<month>\d+)/$",