66 lines
1.9 KiB
Plaintext

@{
ViewData["Title"] = "MealPlans";
}
<head>
<style>
.general_style {
display: flex;
justify-content: space-between;
}
.button_action {
display: flex;
background-color: #5a9ad6;
}
.button_action:hover {
background-color: #225df2;
color: white;
}
</style>
</head>
<div class="text-center">
<h2 class="u-text u-text-custom-color-1 u-text-default u-text-1">Список планов питания</h2>
</div>
<section method="post">
<div class="main">
<table class="table">
<thead>
<tr>
<th>
Id
</th>
<th>
Название плана питания
</th>
<th>
Стоимость
</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<div class="general_style">
<div class="button">
<a asp-area="" asp-controller="Home" asp-action="CreateMealPlan"
class="btn button_action">Добавить</a>
</div>
<div class="button">
<a asp-area="" asp-controller="Home" asp-action="UpdateMealPlan"
class="btn button_action">Изменить</a>
</div>
<div class="button">
<a asp-area="" asp-controller="Home" asp-action="DeleteMealPlan"
class="btn button_action">Удалить</a>
</div>
<div class="button">
<a asp-area="" asp-controller="Home" asp-action="AddParticipantToMealPlan"
class="btn button_action">Добавить участника</a>
</div>
</div>
</div>
</section>