diff --git a/scores/urls.py b/scores/urls.py index 8fafaff..d2dc7fa 100644 --- a/scores/urls.py +++ b/scores/urls.py @@ -29,22 +29,22 @@ urlpatterns = [ path('tv/', views.index, name='index'), path('tv/tournoi//', views.tv_tournament_name, name='tournament'), path('tv/club//', views.club_name, name='club'), - path('tv/club///', views.tv_club_name_tournament, name='tournament'), + path('tv/club//tournoi//', views.tv_club_name_tournament, name='tournament'), path('tv/club///', views.tv_club_name_tournament_name, name='tournament'), path('club///equipes/', views.teams_club_name_tournament_name, name='teams'), path('tournoi//equipes/', views.teams_tournament_name, name='teams'), path('tournoi//equipes/', views.teams_tournament, name='teams'), path('club///equipes/', views.teams_club_name_tournament_name, name='teams'), - path('club///equipes', views.teams_club_name_tournament, name='teams'), + path('club//tournoi//equipes', views.teams_club_name_tournament, name='teams'), path('club///', views.club_name_tournament_name, name='tournament'), - path('club///', views.club_name_tournament, name='tournament'), + path('club//tournoi//', views.club_name_tournament, name='tournament'), path('club//', views.club_name, name='club'), path('', views.index, name='index'), path('club//', views.club, name='club'), path('club//', views.club_name, name='club'), - path('club///', views.club_name_tournament, name='tournament'), + path('club//tournoi//', views.club_name_tournament, name='tournament'), path('club///', views.club_name_tournament_name, name='tournament'), path('tournoi//', views.tournament, name='tournament'), path('tournoi//', views.tournament_name, name='tournament'),