This commit introduces new CSS styles for the registration management form, improving the visual structure and user experience. A new subsection for filters is added, along with a localized label for cancelled registrations. The version code is incremented to 4.72.772 to reflect these updates.
12 lines
758 B
SQL
12 lines
758 B
SQL
-- Gestion inscriptions v2 — fusion recherche + filtres (un seul panneau)
|
|
-- Libellé case à cocher annulées / transférées (remplace chk_cancelled sur la page v2)
|
|
-- Idempotent : safe à réexécuter
|
|
|
|
DELETE FROM info
|
|
WHERE info_clef = 'inscr_gestion_chk_cancelled'
|
|
AND info_prg = 'compte.php';
|
|
|
|
INSERT INTO info (info_clef, info_langue, info_texte, info_aide, info_prg, info_description, info_trie, info_actif, info_option1, info_option2, info_option3, info_creation) VALUES
|
|
('inscr_gestion_chk_cancelled', 'fr', 'Montrer les inscriptions annulées ou transférées', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_chk_cancelled', 'en', 'Show cancelled or transferred registrations', '', 'compte.php', '', 0, 1, '', '', '', NOW());
|