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:
@ -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"),
|
||||
]
|
||||
|
Reference in New Issue
Block a user