ISEbd-22 Alimova M.S. Lab Work 05 base #6

Closed
malimova wants to merge 26 commits from Lab5_base into Lab4_base
Showing only changes of commit db32d4fc50 - Show all commits

View File

@ -10,7 +10,7 @@
@{
if (Model == null)
{
<h3 class="display-4">Авторизируйтесь</h3>
<h3 class="display-4">Авторизуйтесь</h3>
return;
}
<p>
@ -44,28 +44,22 @@
{
<tr>
<td>
@Html.DisplayFor(modelItem =>
item.Id)
@Html.DisplayFor(modelItem => item.Id)
</td>
<td>
@Html.DisplayFor(modelItem =>
item.PastryName)
@Html.DisplayFor(modelItem => item.PastryName)
</td>
<td>
@Html.DisplayFor(modelItem =>
item.DateCreate)
@Html.DisplayFor(modelItem => item.DateCreate)
</td>
<td>
@Html.DisplayFor(modelItem =>
item.Count)
@Html.DisplayFor(modelItem => item.Count)
</td>
<td>
@Html.DisplayFor(modelItem =>
item.Sum)
@Html.DisplayFor(modelItem => item.Sum)
</td>
<td>
@Html.DisplayFor(modelItem =>
item.Status)
@Html.DisplayFor(modelItem => item.Status)
</td>
</tr>
}