44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
@{
|
|
ViewData["Title"] = "Список слушаний по юристам";
|
|
}
|
|
|
|
<h4 class="fw-bold">Список слушаний по юристам</h4>
|
|
|
|
<div id="error-div-shell" class="error-div-shell mb-2">
|
|
<div>
|
|
<p id="error-p" class="error-p"></p>
|
|
</div>
|
|
</div>
|
|
|
|
<select id="file-type">
|
|
<option>docx</option>
|
|
<option>xlsx</option>
|
|
</select>
|
|
|
|
<button id="create-button" type="button" class="button-primary text-button">
|
|
Показать итоговый вариант
|
|
</button>
|
|
|
|
<button id="save-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>
|
|
<th>Отчество</th>
|
|
<th>Опыт работы</th>
|
|
<th>Специализация</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="scrollable-table__tbody">
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="~/js/Report/reportlist.js" asp-append-version="true"></script> |