Files
ms1inscription-v5/sql/MSIN-inscriptions-mobile-fiche-profile-i18n.sql
stephan 6d885caedf Update inscriptions management to transition from mobile to gestion
This commit replaces references to mobile inscriptions with gestion inscriptions across multiple SQL files. It includes the addition of new button labels, search prompts, and QR code handling for the gestion interface, ensuring a consistent user experience. The changes enhance the overall structure and maintainability of the event management system while providing clearer instructions and improved functionality for users.
2026-06-27 12:25:36 -04:00

13 lines
762 B
SQL

-- Inscriptions mobile — fiche participant (courriel, date de naissance)
DELETE FROM info WHERE info_clef IN (
'inscr_gestion_email',
'inscr_gestion_birthdate'
) 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_email', 'fr', 'Courriel', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
('inscr_gestion_email', 'en', 'Email', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
('inscr_gestion_birthdate', 'fr', 'Date de naissance', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
('inscr_gestion_birthdate', 'en', 'Date of birth', '', 'compte.php', '', 0, 1, '', '', '', NOW());