From 48da7773740d8380c0c5c3f2b6fe7f0aba13e872 Mon Sep 17 00:00:00 2001 From: Razmig Sarkissian Date: Fri, 28 Jul 2023 23:35:41 +0200 Subject: [PATCH] fix url --- scores/urls.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scores/urls.py b/scores/urls.py index d2dc7fa..29f7348 100644 --- a/scores/urls.py +++ b/scores/urls.py @@ -35,8 +35,7 @@ urlpatterns = [ 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//tournoi//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//tournoi//', views.club_name_tournament, name='tournament'), path('club//', views.club_name, name='club'),