Case_accounting/CaseAccounting/CaseAccountingProviderView/Views/Home/SpecializationCaselist.cshtml
2023-05-20 00:24:04 +04:00

43 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" class="form-control mb-3">
<option>docx</option>
<option>xlsx</option>
</select>
<button id="create-button" type="button" class="btn btn-success 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>
<th>Специализация:</th>
</tr>
</thead>
<tbody id="scrollable-table__tbody">
</tbody>
</table>
</div>
</div>
<script src="~/js/report/reportlist.js" asp-append-version="true"></script>