You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
3.01-QCM_MuscuMaths/Website/templates/adminChaptersModal.twig

59 lines
2.5 KiB

<!DOCTYPE html>
<html lang="fr">
<head>
<title>Maths Educ</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
</script>
<link rel="stylesheet" href="css/global.css">
</head>
<body>
<div class="modal fade" id="modalUpdateChapters">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">modifier un Chapter</h5>
</div>
<form method="POST" action="/admin/chapters/update">
<div class="modal-body">
<div class="form-group">
<input type="hidden" class="form-control" id="updateId" name="id">
</div>
<div class="form-group">
<label for="name">Nom du chapitre :</label>
<input type="text" class="form-control" id="updateName" name="name">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Fermer</button>
<button type="submit" class="btn btn-primary">Enregistrer</button>
</div>
</form>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script>
if ({{ chapter.id }} != 0) {
window.onload = showModal();
function showModal() {
var modal = new bootstrap.Modal(document.getElementById('modalUpdateChapters'));
var id = document.getElementById('updateId');
var name = document.getElementById('updateName');
id.value = "{{ chapter.id }}";
name.value = "{{ chapter.name }}";
modal.show();
}
}
</script>
</body>
</html>