|
|
|
|
@ -35,8 +35,7 @@ urlpatterns = [ |
|
|
|
|
path('club/<str:club_name>/<str:tournament_shortname>/equipes/', views.teams_club_name_tournament_name, name='teams'), |
|
|
|
|
path('tournoi/<str:tournament_shortname>/equipes/', views.teams_tournament_name, name='teams'), |
|
|
|
|
path('tournoi/<int:tournament_id>/equipes/', views.teams_tournament, name='teams'), |
|
|
|
|
path('club/<str:club_name>/<str:tournament_shortname>/equipes/', views.teams_club_name_tournament_name, name='teams'), |
|
|
|
|
path('club/<str:club_name>/tournoi/<int:tournament_id>/equipes', views.teams_club_name_tournament, name='teams'), |
|
|
|
|
path('club/<str:club_name>/tournoi/<int:tournament_id>/equipes/', views.teams_club_name_tournament, name='teams'), |
|
|
|
|
path('club/<str:club_name>/<str:tournament_shortname>/', views.club_name_tournament_name, name='tournament'), |
|
|
|
|
path('club/<str:club_name>/tournoi/<int:tournament_id>/', views.club_name_tournament, name='tournament'), |
|
|
|
|
path('club/<str:club_name>/', views.club_name, name='club'), |
|
|
|
|
|