From 3d92efb936046353546feea03d789e200217733d Mon Sep 17 00:00:00 2001 From: Laurent Date: Tue, 8 Jul 2025 15:02:39 +0200 Subject: [PATCH 1/3] filter by payment id --- tournaments/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tournaments/admin.py b/tournaments/admin.py index ca2ad40..e25ae38 100644 --- a/tournaments/admin.py +++ b/tournaments/admin.py @@ -322,7 +322,7 @@ class RoundAdmin(SyncedObjectAdmin): class PlayerRegistrationAdmin(SyncedObjectAdmin): list_display = ['first_name', 'last_name', 'licence_id', 'rank'] search_fields = ['id', 'first_name', 'last_name', 'licence_id__icontains'] - list_filter = ['registered_online', TeamScoreTournamentListFilter] + list_filter = ['registered_online', 'payment_id', TeamScoreTournamentListFilter] ordering = ['last_name', 'first_name'] raw_id_fields = ['team_registration'] # Add this line list_per_page = 50 # Controls pagination on the list view From 8002a7a456dc0a1d0fd39e6b86f8c36fb72d97fa Mon Sep 17 00:00:00 2001 From: Laurent Date: Tue, 8 Jul 2025 17:58:38 +0200 Subject: [PATCH 2/3] add new features --- tournaments/templates/tournaments/download.html | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tournaments/templates/tournaments/download.html b/tournaments/templates/tournaments/download.html index c954cab..2b46045 100644 --- a/tournaments/templates/tournaments/download.html +++ b/tournaments/templates/tournaments/download.html @@ -115,15 +115,16 @@

Avant le tournoi

    +
  • Inscriptions en ligne
  • +
  • Paiement en ligne via Stripe
  • +
  • Gestion automatique des listes d'attente
  • Recherche et importation facile des joueurs licenciés
  • -
  • Gestion de la liste d'attente
  • Interface avec Beach-Padel
  • -
  • Simulation des structures de tournoi
  • +
  • Simulation des Structures de tournoi
  • Planification instantanée
  • Convocations groupées des joueurs
  • -
  • Création de vos paires rapide
  • +
  • Impression papier des tableaux et poules
  • Calcul du poids des équipes automatique
  • -
  • Convocation de tous les joueurs en un clic
  • Traitement des forfaits de dernière minute
From a02cf1ee9ac7989d10b5af64ff68bf1229ea9774 Mon Sep 17 00:00:00 2001 From: Laurent Date: Wed, 9 Jul 2025 09:43:57 +0200 Subject: [PATCH 3/3] Adds bottom margin for logo for better display on phones --- tournaments/static/tournaments/css/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/tournaments/static/tournaments/css/style.css b/tournaments/static/tournaments/css/style.css index cac39e7..ccd3358 100644 --- a/tournaments/static/tournaments/css/style.css +++ b/tournaments/static/tournaments/css/style.css @@ -302,6 +302,7 @@ tr { .logo { height: 80px; + margin-bottom: 15px; } .padding-bottom-small {