mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-08-04 21:03:43 +02:00
Display the tournament list
This commit is contained in:
@@ -6,7 +6,7 @@ from django.views.generic import TemplateView
|
||||
|
||||
from .views import CreateTeamView, JoinTeamView, \
|
||||
MyParticipationDetailView, MyTeamDetailView, ParticipationDetailView, TeamAuthorizationsView, \
|
||||
TeamDetailView, TeamLeaveView, TeamListView, TeamUpdateView
|
||||
TeamDetailView, TeamLeaveView, TeamListView, TeamUpdateView, TournamentListView
|
||||
|
||||
|
||||
app_name = "participation"
|
||||
@@ -22,5 +22,6 @@ urlpatterns = [
|
||||
path("team/leave/", TeamLeaveView.as_view(), name="team_leave"),
|
||||
path("detail/", MyParticipationDetailView.as_view(), name="my_participation_detail"),
|
||||
path("detail/<int:pk>/", ParticipationDetailView.as_view(), name="participation_detail"),
|
||||
path("tournament/", TournamentListView.as_view(), name="tournament_list"),
|
||||
path("chat/", TemplateView.as_view(template_name="participation/chat.html"), name="chat")
|
||||
]
|
||||
|
Reference in New Issue
Block a user