44 lines
1.4 KiB
Plaintext
44 lines
1.4 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>
|
|
|
|
<p class="mb-0">Объект договора:</p>
|
|
<input type="text" id="subject-input" name="subject" class="form-control mb-3" />
|
|
<p class="mb-0">Обязаности:</p>
|
|
<input type="text" id="responsibilities-input" name="responsibilities" class="form-control mb-3" />
|
|
<p class="mb-0">Дата составления:</p>
|
|
<input type="date" id="date-input" name="date" class="form-control mb-3" />
|
|
|
|
<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>
|
|
|
|
<button id="create-button" type="button" class="btn btn-primary text-button">
|
|
Создать
|
|
</button>
|
|
|
|
<script src="~/js/deal/deal-create.js" asp-append-version="true"></script>
|