From b4637ddeca0eb753a704b506772384c27039093c Mon Sep 17 00:00:00 2001 From: stephan Date: Mon, 20 Jul 2026 12:35:28 -0400 Subject: [PATCH] =?UTF-8?q?MSIN-4459=20=E2=80=94=20Update=20participant=20?= =?UTF-8?q?list=20rendering=20to=20include=20team=20names=20with=20improve?= =?UTF-8?q?d=20inline=20display.=20Adjust=20CSS=20for=20better=20layout=20?= =?UTF-8?q?and=20visual=20consistency.=20Increment=20version=20code=20to?= =?UTF-8?q?=204.72.842.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- css/style.css | 23 ++++++++++++++++++++--- php/inc_fx_inscriptions_gestion.php | 14 ++++++++++++-- php/inc_settings.php | 2 +- 3 files changed, 33 insertions(+), 6 deletions(-) diff --git a/css/style.css b/css/style.css index a06f5a7..c831396 100644 --- a/css/style.css +++ b/css/style.css @@ -4063,9 +4063,26 @@ a.ms1-trad-link.btn-aide-trad{ color:#212529; min-width:0; display:flex; - align-items:center; - justify-content:space-between; - gap:8px; + align-items:baseline; + flex-wrap:wrap; + gap:4px 8px; +} + +.inscr-gestion-list-item__name-text{ + min-width:0; +} + +.inscr-gestion-list-item__team-inline{ + font-size:12px; + font-weight:500; + color:#6c757d; + white-space:nowrap; +} + +.inscr-gestion-list-item__team-inline::before{ + content:'·'; + margin-right:6px; + color:#adb5bd; } /* MSIN-4405 — la pastille de cause se colle au bord droit de la cellule du nom */ diff --git a/php/inc_fx_inscriptions_gestion.php b/php/inc_fx_inscriptions_gestion.php index 4308f0c..2d21cc8 100644 --- a/php/inc_fx_inscriptions_gestion.php +++ b/php/inc_fx_inscriptions_gestion.php @@ -2292,8 +2292,18 @@ function fxInscrGestionRenderList($intEveId, $strLangue, $strBaseUrl, $arrReq) { // MSIN-4459 — Meme densite que la liste solo : 1 ligne de nom (+ no equipe entre parentheses). echo '
'; - echo '' - . fxInscrGestionEsc($strName) . $strCancelBadge . ''; + echo ''; + echo '' + . fxInscrGestionEsc($strName) . $strCancelBadge . ''; + // Nom d'équipe une fois par groupe (ligne de tete), inline mute — pas une 2e ligne. + if ($blnEquipe && strpos($strCardClass, 'inscr-gestion-list-item--team-start') !== false) { + $strTeamName = trim(fxUnescape(isset($row['pec_nom_equipe']) ? $row['pec_nom_equipe'] : '')); + if ($strTeamName !== '') { + echo '' + . fxInscrGestionEsc($strTeamName) . ''; + } + } + echo ''; echo '' . fxInscrGestionEsc($strRace) . ''; echo '' diff --git a/php/inc_settings.php b/php/inc_settings.php index 208c510..01216b7 100644 --- a/php/inc_settings.php +++ b/php/inc_settings.php @@ -7,7 +7,7 @@ * Constantes * * **************/ -define('_VERSION_CODE', '4.72.841'); +define('_VERSION_CODE', '4.72.842'); define('_DATE_CODE', '2026-07-20'); //MSIN-4290 define('QR_SECRET_KEY', 'ms1_qr_2026_cle_secrete_longue_et_fixe');