PIbd-21_Medvedkov_Coursach/ComputerShopImplementerApp/Views/Home/CreateBatch.cshtml
2024-05-02 00:46:54 +04:00

49 lines
1.5 KiB
Plaintext

@using ComputerShopContracts.ViewModels
@model List<ProductViewModel>
@{
ViewData["Title"] = "CreateBatch";
}
<div class="text-center">
<h2 class="display-4">Создание партии</h2>
</div>
<form method="post">
<div class="container">
<div>Товары</div>
<div class="table-responsive-lg">
<table id="assembliesTable" class="display">
<thead>
<tr>
<th>Выбор</th>
<th>Название</th>
</tr>
</thead>
<tbody>
@foreach (var product in Model)
{
<tr>
<td>
<input type="checkbox" name="assemblies" value="@product.Id" />
</td>
<td>@product.ProductName</td>
</tr>
}
</tbody>
</table>
</div>
</div>>
<div class="row">
<div class="col-8"></div>
<div class="col-4"><input type="submit" value="Сохранить" class="btn btn-primary" /></div>
</div>
</form>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.datatables.net/1.11.3/js/jquery.dataTables.js"></script>
<script>
$(document).ready(function () {
$('#productsTable').DataTable();
});
</script>