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.
13 lines
813 B
SQL
13 lines
813 B
SQL
-- Inscriptions mobile — recherche dossard / réinitialiser
|
|
|
|
DELETE FROM info WHERE info_clef IN (
|
|
'inscr_gestion_rech_bib_equipe',
|
|
'inscr_gestion_reset_search'
|
|
) 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_rech_bib_equipe', 'fr', 'Dossard ou équipe', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_rech_bib_equipe', 'en', 'Bib or team', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_reset_search', 'fr', 'Réinitialiser la recherche', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_reset_search', 'en', 'Reset search', '', 'compte.php', '', 0, 1, '', '', '', NOW());
|