2025-02-02 15:33:11 +01:00
|
|
|
window.addEventListener("load", () => {
|
2025-02-02 21:48:12 +01:00
|
|
|
document.querySelector("button.new").addEventListener("click", () => {
|
|
|
|
window.location.href = "new/"
|
|
|
|
})
|
|
|
|
|
2025-02-02 15:33:11 +01:00
|
|
|
document.querySelectorAll(".list li").forEach(row => {
|
|
|
|
let id = row.dataset.id
|
|
|
|
row.querySelector("button.edit").addEventListener("click", () => {
|
|
|
|
window.location.href = `${id}/`
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|