From 3bd71a1a0ef5a66aceee43c0e83c7d99abc2d989 Mon Sep 17 00:00:00 2001 From: Razmig Sarkissian Date: Sat, 29 Jul 2023 01:15:46 +0200 Subject: [PATCH] fix htmls --- scores/templates/scores/teams.html | 2 +- scores/urls.py | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/scores/templates/scores/teams.html b/scores/templates/scores/teams.html index 4c21246..341d870 100644 --- a/scores/templates/scores/teams.html +++ b/scores/templates/scores/teams.html @@ -76,7 +76,7 @@ {% for team in tournament.teams %} #{{ team.position }} - {{ team.name|linebreaksbr }} + {{ team.name|linebreaksbr }} {{ team.rank }} {{ team.position_label }} diff --git a/scores/urls.py b/scores/urls.py index 29f7348..ae91a29 100644 --- a/scores/urls.py +++ b/scores/urls.py @@ -34,17 +34,13 @@ 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//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'), path('', views.index, name='index'), - path('club//', views.club, name='club'), - path('club//', views.club_name, name='club'), 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'), ]