Amélioration des fonctionnalités du panel admin, des évènements, et ajout de diagrammes UML.

Co-authored-by: Charpentier Juliette <juliette.charpentier1@etu.u-pec.fr>
This commit is contained in:
2024-06-15 00:51:32 +02:00
parent f9ebba1557
commit 80f615ad8e
28 changed files with 35566 additions and 260 deletions

View File

@@ -0,0 +1,13 @@
function redirectToSelectedDate() {
var selectedDate = document.getElementById("eventDate").value;
window.location.href = "/events/list/display?date=" + selectedDate;
}
function redirectToSelectedLocation() {
var selectedLocation = document.getElementById("location").value;
window.location.href = "/events/list/display?location=" + selectedLocation;
}
function redirectToSelectedTitle() {
var selectedTitle = document.getElementById("eventName").value;
window.location.href = "/events/list/display?title=" + selectedTitle;
}