2024-04-30 21:22:23 +03:00

41 lines
649 B
Plaintext

@{
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>
</p>
<table class="table">
<thead>
<tr>
<th>
Номер
</th>
<th>
Дата начала
</th>
<th>
Цена
</th>
<th>
Статус
</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
}
</div>