mirror of
https://gitlab.com/animath/si/plateforme-corres2math.git
synced 2025-07-06 22:14:01 +02:00
Update a team in a popup <3
This commit is contained in:
@ -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"),
|
||||
]
|
||||
|
Reference in New Issue
Block a user