Add bib anomaly registration link and update styles for anomaly details

This commit introduces a new feature to display a registration link for bib anomalies, enhancing user navigation. It includes new CSS styles for better layout and presentation of anomaly details. Additionally, the PHP functions are updated to support the rendering of the registration link, improving the overall functionality of the bib anomaly management system.
This commit is contained in:
2026-07-08 11:26:19 -04:00
parent 17611a9009
commit dbffb288d6
3 changed files with 104 additions and 8 deletions

View File

@ -0,0 +1,11 @@
-- MSIN-4436 — Lien « voir l'inscription » sur les anomalies dossards
-- Prérequis : gestion inscriptions v2 (inc_tableau_inscriptions_gestion)
-- Idempotent
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)
SELECT 'bib_v4_anomalies_view_inscription', 'fr', 'Voir l''inscription', '', 'compte.php', '', 0, 1, '', '', '', NOW()
FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM info WHERE info_clef = 'bib_v4_anomalies_view_inscription' AND info_langue = 'fr' 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)
SELECT 'bib_v4_anomalies_view_inscription', 'en', 'View registration', '', 'compte.php', '', 0, 1, '', '', '', NOW()
FROM DUAL WHERE NOT EXISTS (SELECT 1 FROM info WHERE info_clef = 'bib_v4_anomalies_view_inscription' AND info_langue = 'en' AND info_prg = 'compte.php');