Coursach/Course/ImplementerApp/Views/Home/DetailTimeReport.cshtml
Sergey Kozyrev 8e9e4dd321 ViewUpdate
Around the world, around the world
Around the world, around the world
Around the world, around the world
Around the world, around the world
2024-04-30 00:44:32 +04:00

51 lines
1.3 KiB
Plaintext

@using Contracts.ViewModels
@model List<DetailTimeReport>
@{
ViewData["Title"] = "Details on Time Reports";
}
<div class="text-center">
<h1 class="display-4">Список деталей в диапазоне времени</h1>
</div>
<form asp-controller="Report" method="post">
<button type="submit" class="btn btn-primary">Отправить отчет на почту</button>
</form>
<table class="table">
<thead>
<tr>
<th>Деталь</th>
<th>Станки</th>
<th>Производства</th>
</tr>
</thead>
<tbody>
@foreach (var detail in Model)
{
<tr>
<td>@detail.DetailName</td>
<td>
<ul>
@foreach (var machine in detail.Machines)
{
<li>@machine</li>
}
</ul>
</td>
<td>
<ul>
@foreach (var production in detail.Productions)
{
<li>@production</li>
}
</ul>
</td>
</tr>
}
</tbody>
</table>