Mon commit initial

This commit is contained in:
2025-12-19 09:43:33 +00:00
commit f11d1e62b4
336 changed files with 6247 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
const $ = (id) => document.getElementById(id);
const course_terminer = $("course-terminer").dataset.state;
if(course_terminer === "True"){
$("course-terminer").checked = true;
document.querySelectorAll(".enregistrerButton").forEach(button => {
button.style.display = "none";
});
}