mirror of
https://github.com/ershisan99/flashcards-admin-bot.git
synced 2025-12-16 20:59:25 +00:00
initial commit
This commit is contained in:
27
index.js.template
Normal file
27
index.js.template
Normal file
@@ -0,0 +1,27 @@
|
||||
const data = /* USERS */;
|
||||
|
||||
const root = document.getElementById('root');
|
||||
|
||||
const html = `<div>${data
|
||||
.map((group) => {
|
||||
return `<table><thead>
|
||||
<tr>
|
||||
<th>Имя</th>
|
||||
<th>Время</th>
|
||||
<th>Telegram</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>${group
|
||||
.map((el) => {
|
||||
return `<tr>
|
||||
<td >${el.name}</td>
|
||||
<td style='width: 200px'">${el.availableTime.from} - ${el.availableTime.to}</td>
|
||||
<td style='width: 200px'>${el.tgUsername}</td>
|
||||
</tr>`;
|
||||
})
|
||||
.join('')}</tbody>
|
||||
</table>`;
|
||||
})
|
||||
.join('')}</div>`;
|
||||
|
||||
root.innerHTML = html;
|
||||
Reference in New Issue
Block a user