This commit introduces a new event management panel in the PHP code, displaying readonly quantities and waiting list statistics. The associated CSS styles have been added to enhance the layout and presentation of the panel. Additionally, translations for the readonly notice have been included in the SQL script. The version code has been updated to 4.72.644 to reflect these changes, aiming to improve user experience in managing race parameters.
9 lines
865 B
SQL
9 lines
865 B
SQL
-- Message lecture seule — bloc gestion des épreuves (dossards v4).
|
|
-- Exécuter sur la BD client si MSIN-4379-bib_v4-traductions.sql déjà importé.
|
|
|
|
DELETE FROM info WHERE info_clef = 'bib_v4_gestion_qte_readonly' 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
|
|
('bib_v4_gestion_qte_readonly', 'fr', 'La modification des quantités disponibles n''est plus offerte ici. Consultez l''administration de l''événement si un ajustement est nécessaire.', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('bib_v4_gestion_qte_readonly', 'en', 'Available quantities can no longer be changed here. Contact event administration if an adjustment is needed.', '', 'compte.php', '', 0, 1, '', '', '', NOW());
|