2023-05-20 05:46:02 +04:00
|
|
|
@{
|
|
|
|
ViewData["Title"] = "Поток";
|
|
|
|
}
|
|
|
|
|
|
|
|
@{
|
|
|
|
<h4 id="stream-data" class="fw-bold" data-id="@ViewBag.Stream.Id">Обновление потока</h4>
|
|
|
|
|
|
|
|
<div id="error-div-shell" class="error-div-shell mb-2">
|
|
|
|
<div>
|
|
|
|
<p id="error-p" class="error-p"></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p class="mb-0">Название:</p>
|
|
|
|
<input type="text" value="@ViewBag.Stream.Name" id="name-input" name="name" class="form-control mb-3" />
|
|
|
|
|
|
|
|
<button id="create-button" type="button" class="button-primary text-button">
|
|
|
|
Сохранить изменения
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<div class="scrollable-table">
|
|
|
|
<table class="table table-bordered">
|
|
|
|
<thead class="thead-light">
|
|
|
|
<tr>
|
|
|
|
<th>Название</th>
|
|
|
|
<th>Количество студентов</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody id="scrollable-table__tbody">
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
<script src="~/js/stream/stream-update.js" asp-append-version="true"></script>
|