mirror of
https://github.com/TheErrorExe/blockattack
synced 2025-09-06 05:20:59 +02:00
Update index.html
This commit is contained in:
parent
4ffc8dc9d8
commit
e9d85953ec
@ -111,6 +111,7 @@
|
|||||||
<div class="calendar">
|
<div class="calendar">
|
||||||
<table id="scheduleTable">
|
<table id="scheduleTable">
|
||||||
<tr>
|
<tr>
|
||||||
|
<th>Datum</th>
|
||||||
<th>Tag</th>
|
<th>Tag</th>
|
||||||
<th>Zeit</th>
|
<th>Zeit</th>
|
||||||
<th>Extra-Infos</th>
|
<th>Extra-Infos</th>
|
||||||
@ -151,7 +152,7 @@ fetch("/drmifo/schedule.json?nocache=" + new Date().getTime())
|
|||||||
const table = document.getElementById("scheduleTable");
|
const table = document.getElementById("scheduleTable");
|
||||||
data.forEach(event => {
|
data.forEach(event => {
|
||||||
const row = document.createElement("tr");
|
const row = document.createElement("tr");
|
||||||
row.innerHTML = `<td>${event.tag}</td><td>${event.zeit}</td><td>${event.infos}</td><td>${event.datum}</td>`;
|
row.innerHTML = `<td>${event.datum}</td><td>${event.tag}</td><td>${event.zeit}</td><td>${event.infos}</td>`;
|
||||||
table.appendChild(row);
|
table.appendChild(row);
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user