Case_accounting/CaseAccounting/CaseAccountingCustomerView/Views/Lawyers/Bind.cshtml

35 lines
1.1 KiB
Plaintext
Raw Normal View History

@{
ViewData["Title"] = "Юрист";
}
@{
<h4 id="lawyer-data" class="fw-bold" data-id="@ViewBag.Lawyer.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" readonly value="@ViewBag.Document.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>
</tr>
</thead>
<tbody id="scrollable-table__tbody">
</tbody>
</table>
</div>
</div>
}
<script src="~/js/document/document-bind.js" asp-append-version="true"></script>