From cfcbfe97681427ba4b3f54ab8e6d7295bc31ab7d Mon Sep 17 00:00:00 2001 From: Colin Maudry Date: Fri, 3 Jul 2026 11:55:51 +0200 Subject: [PATCH] =?UTF-8?q?Ajouter=20la=20colonne=20handle=20Frisbii=20?= =?UTF-8?q?=C3=A0=20l'historique=20d'abonnements=20(admin)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/admin/detail.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages/admin/detail.py b/src/pages/admin/detail.py index f463427..c67d960 100644 --- a/src/pages/admin/detail.py +++ b/src/pages/admin/detail.py @@ -101,6 +101,7 @@ def _history_section(user_id, current_id): [ html.Td([sub["plan"] or "—", badge]), html.Td(sub["status"] or "—"), + html.Td(sub["frisbii_subscription_handle"] or "—"), html.Td(sub["prix_ht"] if sub["prix_ht"] is not None else "—"), html.Td(sub["current_period_end"] or "—"), html.Td(sub["created_at"]), @@ -119,6 +120,7 @@ def _history_section(user_id, current_id): for h in ( "Plan", "Statut", + "Handle Frisbii", "Prix HT", "Fin de période", "Créé le",