|
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"),
|
|
]
|