1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2024-12-26 06:22:20 +00:00
plateforme-corres2math/apps/participation/urls.py
2020-09-24 11:15:54 +02:00

15 lines
539 B
Python

from django.urls import path
from .views import CreateTeamView, JoinTeamView, MyTeamDetailView, TeamDetailView, TeamUpdateView
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"),
path("team/<int:pk>/update/", TeamUpdateView.as_view(), name="update_team"),
]