1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-07-06 15:24:01 +02:00

ListViews et templates

This commit is contained in:
Ehouarn
2025-07-05 19:47:35 +02:00
parent 6c7d86185a
commit f6ad6197de
11 changed files with 306 additions and 10 deletions

12
apps/family/urls.py Normal file
View File

@ -0,0 +1,12 @@
# Copyright (C) 2018-2025 by BDE ENS Paris-Saclay
# SPDX-License-Identifier: GPL-3.0-or-later
from django.urls import path
from .views import FamilyListView, ChallengeListView
app_name = 'family'
urlpatterns = [
path('list/', FamilyListView.as_view(), name="family_list"),
path('challenge/list/', ChallengeListView.as_view(), name="challenge_list"),
]