|
|
|
@ -22,13 +22,13 @@ urlpatterns = [ |
|
|
|
path('match/<int:match_id>/', views.match, name='match'), |
|
|
|
path('match/<int:match_id>/', views.match, name='match'), |
|
|
|
path('tv/match/<int:match_id>/', views.match_tv, name='match'), |
|
|
|
path('tv/match/<int:match_id>/', views.match_tv, name='match'), |
|
|
|
|
|
|
|
|
|
|
|
path('tv/club/<str:club_name>/<int:tournament_id>/equipes/', views.tv_teams_club_name_tournament, name='teams'), |
|
|
|
path('tv/club/<str:club_name>/tournoi/<int:tournament_id>/equipes/', views.tv_teams_club_name_tournament, name='teams'), |
|
|
|
path('tv/tournoi/<str:tournament_shortname>/equipes/', views.tv_teams_tournament_name, name='teams'), |
|
|
|
path('tv/tournoi/<str:tournament_shortname>/equipes/', views.tv_teams_tournament_name, name='teams'), |
|
|
|
path('tv/club/<str:club_name>/<str:tournament_shortname>/equipes/', views.tv_teams_club_name_tournament_name, name='teams'), |
|
|
|
path('tv/club/<str:club_name>/<str:tournament_shortname>/equipes/', views.tv_teams_club_name_tournament_name, name='teams'), |
|
|
|
|
|
|
|
|
|
|
|
path('tv/', views.index, name='index'), |
|
|
|
path('tv/', views.index, name='index'), |
|
|
|
path('tv/tournoi/<str:tournament_shortname>/', views.tv_tournament_name, name='tournament'), |
|
|
|
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>/', views.tv_club_name, name='club'), |
|
|
|
path('tv/club/<str:club_name>/tournoi/<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('tv/club/<str:club_name>/<str:tournament_shortname>/', views.tv_club_name_tournament_name, name='tournament'), |
|
|
|
|
|
|
|
|
|
|
|
|