|
|
|
|
@ -34,17 +34,13 @@ 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>/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'), |
|
|
|
|
|
|
|
|
|
path('', views.index, name='index'), |
|
|
|
|
path('club/<int:club_id>/', views.club, name='club'), |
|
|
|
|
path('club/<str:club_name>/', views.club_name, name='club'), |
|
|
|
|
path('club/<str:club_name>/tournoi/<int:tournament_id>/', views.club_name_tournament, name='tournament'), |
|
|
|
|
path('club/<str:club_name>/<str:tournament_shortname>/', views.club_name_tournament_name, name='tournament'), |
|
|
|
|
path('tournoi/<int:tournament_id>/', views.tournament, name='tournament'), |
|
|
|
|
path('tournoi/<str:tournament_shortname>/', views.tournament_name, name='tournament'), |
|
|
|
|
] |
|
|
|
|
|