"""padel URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/4.1/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: path('', views.home, name='home') Class-based views 1. Add an import: from other_app.views import Home 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') Including another URLconf 1. Import the include() function: from django.urls import include, path 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ from django.contrib import admin from django.urls import path from . import views urlpatterns = [ path('tv/club///poules/', views.tv_brackets, name='brackets'), path('club///poules/', views.brackets, name='brackets'), path('tv/club//tournoi//poules/', views.tv_brackets_tournament_id, name='brackets'), path('club//tournoi//poules/', views.brackets_tournament_id, name='brackets'), path('tv/club///classement/', views.tv_ranking, name='ranks'), path('club///classement/', views.ranking, name='ranks'), path('tv/club//tournoi//classement/', views.tv_ranking_tournament_id, name='ranks'), path('club//tournoi//classement/', views.ranking_tournament_id, name='ranks'), path('match//', views.match, name='match'), path('tv/match//', views.match_tv, name='match'), path('tv/club//tournoi//equipes/', views.tv_teams_club_name_tournament, name='teams'), path('tv/tournoi//equipes/', views.tv_teams_tournament_name, name='teams'), path('tv/club///equipes/', views.tv_teams_club_name_tournament_name, name='teams'), path('tv/', views.tv_index, name='index'), path('tv/tournoi//', views.tv_tournament_name, name='tournament'), path('tv/club//', views.tv_club_name, name='club'), path('tv/club//tournoi//', views.tv_club_name_tournament, name='tournament'), path('tv/club///', views.tv_club_name_tournament_name, name='tournament'), path('club///equipes/', views.teams_club_name_tournament_name, name='teams'), path('tournoi//equipes/', views.teams_tournament_name, 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//tournoi//', views.club_name_tournament, name='tournament'), path('club///', views.club_name_tournament_name, name='tournament'), path('tournoi//', views.tournament_name, name='tournament'), ]