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

Get ZIP archive of all authorizations of one team

This commit is contained in:
Yohann D'ANELLO
2020-09-27 18:40:45 +02:00
parent 84a7ec6fb5
commit 5c76e5f0db
3 changed files with 42 additions and 1 deletions

View File

@ -1,7 +1,7 @@
from django.urls import path
from .views import CreateTeamView, JoinTeamView, MyParticipationDetailView, MyTeamDetailView, ParticipationDetailView,\
TeamDetailView, TeamUpdateView, UploadVideoView
TeamAuthorizationsView, TeamDetailView, TeamUpdateView, UploadVideoView
app_name = "participation"
@ -12,6 +12,7 @@ urlpatterns = [
path("team/", MyTeamDetailView.as_view(), name="my_team_detail"),
path("team/<int:pk>/", TeamDetailView.as_view(), name="team_detail"),
path("team/<int:pk>/update/", TeamUpdateView.as_view(), name="update_team"),
path("team/<int:pk>/authorizations/", TeamAuthorizationsView.as_view(), name="team_authorizations"),
path("detail/", MyParticipationDetailView.as_view(), name="my_participation_detail"),
path("detail/<int:pk>/", ParticipationDetailView.as_view(), name="participation_detail"),
path("detail/upload-video/<int:pk>/", UploadVideoView.as_view(), name="upload_video"),