main
Razmig Sarkissian 2 years ago
parent 71f7bc71c3
commit eab40fd6cb
  1. 8
      scores/urls.py

@ -29,22 +29,22 @@ urlpatterns = [
path('tv/', views.index, name='index'),
path('tv/tournoi/<str:tournament_shortname>/', views.tv_tournament_name, name='tournament'),
path('tv/club/<str:club_name>/', views.club_name, name='club'),
path('tv/club/<str:club_name>/<int:tournament_id>/', views.tv_club_name_tournament, name='tournament'),
path('tv/club/<str:club_name>/tournoi/<int:tournament_id>/', views.tv_club_name_tournament, name='tournament'),
path('tv/club/<str:club_name>/<str:tournament_shortname>/', views.tv_club_name_tournament_name, name='tournament'),
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>/<str:tournament_shortname>/equipes/', views.teams_club_name_tournament_name, name='teams'),
path('club/<str:club_name>/<int:tournament_id>/equipes', views.teams_club_name_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>/<int:tournament_id>/', views.club_name_tournament, 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>/<int:tournament_id>/', views.club_name_tournament, name='tournament'),
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'),

Loading…
Cancel
Save