console.log("script OK");
document.addEventListener("DOMContentLoaded", function () {
const table = document.getElementById("tableView");
const cards = document.getElementById("cardView");
const btnTable = document.getElementById("btnTable");
const btnCards = document.getElementById("btnCards");
if (!btnTable || !btnCards) return;
btnTable.addEventListener("click", function () {
table.style.display = "block";
cards.style.display = "none";
});
btnCards.addEventListener("click", function () {
table.style.display = "none";
cards.style.display = "block";
});
});