fde6a6b5c4
Достаточно костыльно но пофиг
67 lines
1.4 KiB
Plaintext
67 lines
1.4 KiB
Plaintext
@using ConfectioneryContracts.ViewModels
|
|
|
|
@model List<ShopViewModel>
|
|
|
|
@{
|
|
ViewData["Title"] = "Home Page";
|
|
}
|
|
|
|
<div class="text-center">
|
|
<h1 class="display-4">Магазины</h1>
|
|
</div>
|
|
|
|
|
|
<div class="text-center">
|
|
@{
|
|
if (Model == null)
|
|
{
|
|
<h3 class="display-4">Введите пароль</h3>
|
|
return;
|
|
}
|
|
|
|
<p>
|
|
<a asp-action="Create">Создать магазин</a>
|
|
<a asp-action="Update">Редактировать магазин</a>
|
|
<a asp-action="Delete">Удалить магазин</a>
|
|
<a asp-action="AddPastry">Добавить изделие в магазин</a>
|
|
</p>
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
Название магазина
|
|
</th>
|
|
<th>
|
|
Адрес
|
|
</th>
|
|
<th>
|
|
Дата открытия
|
|
</th>
|
|
<th>
|
|
Максимальное количество изделий
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var item in Model)
|
|
{
|
|
<tr>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.Name)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.Address)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.DateOpening)
|
|
</td>
|
|
<td>
|
|
@Html.DisplayFor(modelItem => item.MaxCountPastries)
|
|
</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|
|
}
|
|
</div>
|