Создание вкладки "Расписание занятий"

This commit is contained in:
alekan
2026-03-03 00:02:07 +03:00
parent 2004766855
commit 88f1abfe25
4 changed files with 83 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<div class="card">
<h2>Расписание занятий</h2>
<div class="table-wrap">
<table id="schedule-table">
<thead>
<tr>
<th>ID</th>
<th>Преподаватель</th>
<th>Группа</th>
<th>Дисциплина</th>
<th>День недели</th>
<th>Неделя</th>
<th>Время</th>
</tr>
</thead>
<tbody id="schedule-tbody">
<tr>
<td colspan="7" class="loading-row">Загрузка...</td>
</tr>
</tbody>
</table>
</div>
</div>