diff options
Diffstat (limited to 'admin/public/prediction.js')
-rw-r--r-- | admin/public/prediction.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/admin/public/prediction.js b/admin/public/prediction.js new file mode 100644 index 0000000..66afb06 --- /dev/null +++ b/admin/public/prediction.js @@ -0,0 +1,11 @@ +const list = document.getElementById("list"); + +fetch("api/prediction") + .then((r) => r.json()) + .then((r) => { + r.forEach((d) => { + const elem = document.createElement("li"); + elem.innerText = `${d.uname} ${d.umid || ""} ${d.usur}: ${d.tname} ${d.tmid || ""} ${d.tsur}`; + list.appendChild(elem); + }); + }); |