blob: 5ea58f7a48b67254b9d0cb4e1bb2ed443a335871 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
function addUser(user) {
const li = document.createElement("a");
li.classList.add("pure-menu-link");
li.textContent = `${user.name} ${user.middlename || ""} ${user.surname}`;
li.href = "./user.html?uid=" + user.id;
if (user.class_id < 6) document.getElementById("class_" + user.class_id).appendChild(li);
}
fetch("/auth/api/list?class=all")
.then((response) => response.json())
.then((response) => response.forEach(addUser));
document.querySelectorAll("b").forEach((elem) => {
const next = elem.nextElementSibling;
next.style.display = "none";
elem.addEventListener("click", () => {
console.log(elem);
next.style.display = next.style.display == "none" ? "block" : "none";
});
});
|