2023-05-18 23:42:48 +04:00
|
|
|
@{
|
|
|
|
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>
|
2023-05-19 14:53:49 +04:00
|
|
|
<input type="text" readonly value="@ViewBag.Lawyer.Name" id="name-input" name="name" class="form-control mb-3" />
|
2023-05-18 23:42:48 +04:00
|
|
|
|
|
|
|
<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>
|
2023-05-19 14:53:49 +04:00
|
|
|
<th>Название дела:</th>
|
2023-05-18 23:42:48 +04:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody id="scrollable-table__tbody">
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
}
|
2023-05-19 14:53:49 +04:00
|
|
|
<script src="~/js/Lawyers/lawyer-bind.js" asp-append-version="true"></script>
|