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'),
]