1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-07-20 16:09:12 +02:00

Rank calculation optimized

This commit is contained in:
Ehouarn
2025-07-18 21:01:15 +02:00
parent ac56700705
commit 67b936ae98
5 changed files with 67 additions and 17 deletions

View File

@ -1,7 +1,7 @@
# Copyright (C) 2018-2025 by BDE ENS Paris-Saclay
# SPDX-License-Identifier: GPL-3.0-or-later
from django.urls import path
from django.urls import path, include
from . import views
@ -18,4 +18,5 @@ urlpatterns = [
path('challenge/detail/<int:pk>/', views.ChallengeDetailView.as_view(), name="challenge_detail"),
path('challenge/update/<int:pk>/', views.ChallengeUpdateView.as_view(), name="challenge_update"),
path('manage/', views.FamilyManageView.as_view(), name="manage"),
path('api/family/', include('family.api.urls')),
]