1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2025-07-06 08:43:53 +02:00

Update a team in a popup <3

This commit is contained in:
Yohann D'ANELLO
2020-09-24 11:15:54 +02:00
parent 8c70ef3835
commit 4975044046
11 changed files with 146 additions and 50 deletions

View File

@ -1,6 +1,6 @@
from django.urls import path
from .views import CreateTeamView, JoinTeamView, MyTeamDetailView, TeamDetailView
from .views import CreateTeamView, JoinTeamView, MyTeamDetailView, TeamDetailView, TeamUpdateView
app_name = "participation"
@ -10,4 +10,5 @@ urlpatterns = [
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"),
path("team/<int:pk>/update/", TeamUpdateView.as_view(), name="update_team"),
]