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

Display popups to create and join team

This commit is contained in:
Yohann D'ANELLO
2020-09-22 20:41:42 +02:00
parent 016398dd8d
commit c7f74b68be
11 changed files with 399 additions and 195 deletions

View File

@ -1 +1,11 @@
urlpatterns = []
from django.urls import path
from .views import CreateTeamView, JoinTeamView
app_name = "participation"
urlpatterns = [
path("create_team/", CreateTeamView.as_view(), name="create_team"),
path("join_team/", JoinTeamView.as_view(), name="join_team"),
]