41 lines
1.4 KiB
Plaintext
41 lines
1.4 KiB
Plaintext
@{
|
|
ViewData["Title"] = "Группа обучения";
|
|
}
|
|
|
|
@{
|
|
<div class="text-center" id="document-data" data-id="@ViewBag.Document.Id">
|
|
<h1 class="display-4">Обновление приказа</h1>
|
|
</div>
|
|
|
|
<div id="error-div-shell" class="error-div-shell mb-2">
|
|
<div>
|
|
<p id="error-p" class="error-p text-danger"></p>
|
|
</div>
|
|
</div>
|
|
|
|
<p class="mb-0">Название:</p>
|
|
<input type="text" value="@ViewBag.Document.Name" id="name-input" name="name" class="form-control mb-3" />
|
|
|
|
<button id="create-button" type="button" class="btn btn-primary text-button">
|
|
Сохранить изменения
|
|
</button>
|
|
|
|
<div class="mt-4">
|
|
<div class="scrollable-table">
|
|
<table class="table table-bordered">
|
|
<thead class="thead-light">
|
|
<tr>
|
|
<th>Имя</th>
|
|
<th>Фамилия</th>
|
|
<th>Дата рождения</th>
|
|
<th>Номер студ. билета</th>
|
|
<th>Статус обучения</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="scrollable-table__tbody">
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
}
|
|
<script src="~/js/document/document-update.js" asp-append-version="true"></script> |