70 lines
1.7 KiB
Plaintext
70 lines
1.7 KiB
Plaintext
@using CaseAccountingContracts.ViewModels
|
|
|
|
@{
|
|
ViewData["Title"] = "Юристы";
|
|
}
|
|
<div class="text-center">
|
|
<h1 class="display-4">Юристы</h1>
|
|
</div>
|
|
|
|
|
|
<div class="text-center">
|
|
@{
|
|
if (ViewBag.Lawyers == null)
|
|
{
|
|
<h3 class="display-4">Войдите в аккаунт</h3>
|
|
return;
|
|
}
|
|
<div>
|
|
<a class="btn btn-secondary" asp-controller="Lawyers" asp-action="Create">Добавить юриста</a>
|
|
</div>
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
Имя Фамилия Отчество
|
|
</th>
|
|
<th>
|
|
Опыт работы
|
|
</th>
|
|
<th>
|
|
Название специализации
|
|
</th>
|
|
<th>
|
|
Изменить запись
|
|
</th>
|
|
<th>
|
|
Удалить запись
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var item in ViewBag.Lawyers)
|
|
{
|
|
<tr class="d-table-row">
|
|
<td>
|
|
@item.Name @item.Surname @item.Patronymic
|
|
</td>
|
|
<td>
|
|
@item.Experience
|
|
</td>
|
|
<td>
|
|
@item.Specialization
|
|
</td>
|
|
<td>
|
|
<a id="update-button-@item.Id" class="btn btn-secondary" asp-controller="Lawyers" asp-action="Bind" asp-route-id="@item.Id">Привязка</a>
|
|
</td>
|
|
<td>
|
|
<a id="update-button-@item.Id" class="btn btn-secondary" asp-controller="Lawyers" asp-action="Update" asp-route-id="@item.Id">Изменить</a>
|
|
</td>
|
|
<td>
|
|
<a id="remove-button-@item.Id" class="btn btn-secondary remove-btn" data-id="@item.Id">Удалить</a>
|
|
</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|
|
}
|
|
</div>
|
|
|
|
<script src="~/js/Lawyers/lawyers.js" asp-append-version="true"></script> |