# Copyright (C) 2020 by Animath # SPDX-License-Identifier: GPL-3.0-or-later from django.urls import path from .views import CreateTeamView, FinalNotationSheetTemplateView, GSheetNotificationsView, JoinTeamView, \ MyParticipationDetailView, MyTeamDetailView, NotationSheetsArchiveView, NoteUpdateView, ParticipationDetailView, \ PassageDetailView, PassageUpdateView, PoolCreateView, PoolDetailView, PoolJuryView, PoolNotesTemplateView, \ PoolPresideJuryView, PoolRemoveJuryView, PoolUpdateView, PoolUploadNotesView, \ ScaleNotationSheetTemplateView, SelectTeamFinalView, \ SolutionsDownloadView, SolutionUploadView, SynthesisUploadView, \ TeamAuthorizationsView, TeamDetailView, TeamLeaveView, TeamListView, TeamUpdateView, \ TeamUploadMotivationLetterView, TournamentCreateView, TournamentDetailView, TournamentExportCSVView, \ TournamentHarmonizeNoteView, TournamentHarmonizeView, TournamentListView, TournamentPaymentsView, \ TournamentPublishNotesView, TournamentUpdateView app_name = "participation" urlpatterns = [ path("create_team/", CreateTeamView.as_view(), name="create_team"), path("join_team/", JoinTeamView.as_view(), name="join_team"), path("teams/", TeamListView.as_view(), name="team_list"), path("team/", MyTeamDetailView.as_view(), name="my_team_detail"), path("team//", TeamDetailView.as_view(), name="team_detail"), path("team//update/", TeamUpdateView.as_view(), name="update_team"), path("team//upload-motivation-letter/", TeamUploadMotivationLetterView.as_view(), name="upload_team_motivation_letter"), path("team//authorizations/", TeamAuthorizationsView.as_view(), name="team_authorizations"), path("team/leave/", TeamLeaveView.as_view(), name="team_leave"), path("detail/", MyParticipationDetailView.as_view(), name="my_participation_detail"), path("detail//", ParticipationDetailView.as_view(), name="participation_detail"), path("detail//solution/", SolutionUploadView.as_view(), name="upload_solution"), path("detail//solutions/", SolutionsDownloadView.as_view(), name="participation_solutions"), path("tournament/", TournamentListView.as_view(), name="tournament_list"), path("tournament/create/", TournamentCreateView.as_view(), name="tournament_create"), path("tournament//", TournamentDetailView.as_view(), name="tournament_detail"), path("tournament//update/", TournamentUpdateView.as_view(), name="tournament_update"), path("tournament//payments/", TournamentPaymentsView.as_view(), name="tournament_payments"), path("tournament//csv/", TournamentExportCSVView.as_view(), name="tournament_csv"), path("tournament//authorizations/", TeamAuthorizationsView.as_view(), name="tournament_authorizations"), path("tournament//solutions/", SolutionsDownloadView.as_view(), name="tournament_solutions"), path("tournament//syntheses/", SolutionsDownloadView.as_view(), name="tournament_syntheses"), path("tournament//notation/sheets/", NotationSheetsArchiveView.as_view(), name="tournament_notation_sheets"), path("tournament//notation/notifications/", GSheetNotificationsView.as_view(), name="tournament_gsheet_notifications"), path("tournament//publish-notes//", TournamentPublishNotesView.as_view(), name="tournament_publish_notes"), path("tournament//harmonize//", TournamentHarmonizeView.as_view(), name="tournament_harmonize"), path("tournament//harmonize////", TournamentHarmonizeNoteView.as_view(), name="tournament_harmonize_note"), path("tournament//select-final//", SelectTeamFinalView.as_view(), name="select_team_final"), path("pools/create/", PoolCreateView.as_view(), name="pool_create"), path("pools//", PoolDetailView.as_view(), name="pool_detail"), path("pools//update/", PoolUpdateView.as_view(), name="pool_update"), path("pools//solutions/", SolutionsDownloadView.as_view(), name="pool_download_solutions"), path("pools//syntheses/", SolutionsDownloadView.as_view(), name="pool_download_syntheses"), path("pools//notation/scale/", ScaleNotationSheetTemplateView.as_view(), name="pool_scale_note_sheet"), path("pools//notation/final/", FinalNotationSheetTemplateView.as_view(), name="pool_final_note_sheet"), path("pools//notation/sheets/", NotationSheetsArchiveView.as_view(), name="pool_notation_sheets"), path("pools//jury/", PoolJuryView.as_view(), name="pool_jury"), path("pools//jury/remove//", PoolRemoveJuryView.as_view(), name="pool_remove_jury"), path("pools//jury/preside//", PoolPresideJuryView.as_view(), name="pool_preside"), path("pools//upload-notes/", PoolUploadNotesView.as_view(), name="pool_upload_notes"), path("pools//upload-notes/template/", PoolNotesTemplateView.as_view(), name="pool_notes_template"), path("pools/passages//", PassageDetailView.as_view(), name="passage_detail"), path("pools/passages//update/", PassageUpdateView.as_view(), name="passage_update"), path("pools/passages//solution/", SynthesisUploadView.as_view(), name="upload_synthesis"), path("pools/passages/notes//", NoteUpdateView.as_view(), name="update_notes"), ]