mirror of
https://gitlab.com/animath/si/plateforme-corres2math.git
synced 2025-07-06 04:03:52 +02:00
Create team detail page
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
from django.urls import path
|
||||
|
||||
from .views import CreateTeamView, JoinTeamView
|
||||
from .views import CreateTeamView, JoinTeamView, MyTeamDetailView, TeamDetailView
|
||||
|
||||
|
||||
app_name = "participation"
|
||||
@ -8,4 +8,6 @@ app_name = "participation"
|
||||
urlpatterns = [
|
||||
path("create_team/", CreateTeamView.as_view(), name="create_team"),
|
||||
path("join_team/", JoinTeamView.as_view(), name="join_team"),
|
||||
path("team/", MyTeamDetailView.as_view(), name="my_team_detail"),
|
||||
path("team/<int:pk>/", TeamDetailView.as_view(), name="team_detail"),
|
||||
]
|
||||
|
Reference in New Issue
Block a user