clean: remove pycache from tracking

This commit is contained in:
2026-04-30 13:28:53 +02:00
committed by Soriba SYLLA
parent d12b014b20
commit 7ee14e7b3f
525 changed files with 0 additions and 45689 deletions

View File

@@ -1,19 +0,0 @@
const boutonEnregistrerProjet = $("btnEnregistrerProjet");
boutonEnregistrerProjet.addEventListener("click", function() {
const formulaire = $("formCreationProjet");
const formData = new FormData(formulaire);
fetch(formulaire.action, {
method: "POST",
body: formData,
headers: {
"X-CSRFToken": formData.get("csrfmiddlewaretoken")
}
})
.then(response => {
if (response.ok) {
window.location.reload();
alert("Projet enregistré avec succès !");
}
});
});