исправления

This commit is contained in:
AnnZhimol 2023-04-07 14:03:51 +04:00
parent 7c2707df16
commit 86c160fb6b
8 changed files with 31 additions and 31 deletions

View File

@ -33,7 +33,7 @@ namespace HotelOrganiserApp.Controllers
return View();
}
public IActionResult BindingConferenceBindingAndConference()
public IActionResult BindingRoomAndMealPlan()
{
return View();
}

View File

@ -1,17 +1,17 @@
@{
ViewData["Title"] = "BindingConferenceBindingAndConference";
ViewData["Title"] = "BindingRoomAndMealPlan";
}
<div class="text-center">
<h2 class="display-4">Привязка брони по конфереции к конференциям</h2>
<h2 class="display-4">Привязка комнаты к плану питания</h2>
</div>
<form method="post">
<label for="validationCustom04" class="form-label">Выбранная бронь по конференции</label>
<label for="validationCustom04" class="form-label">Выбранная комната</label>
<select class="form-select" id="validationCustom04" required>
<option selected disabled value="">Сделайте выбор</option>
<option>Данные из бд*</option>
</select>
<label for="validationCustom04" class="form-label">Выбранная конференция</label>
<label for="validationCustom04" class="form-label">Выбранный план питания</label>
<select class="form-select" id="validationCustom04" required>
<option selected disabled value="">Сделайте выбор</option>
<option>Данные из бд*</option>

View File

@ -1,14 +1,14 @@
@using HotelContracts.ViewModels
@model List<DinnerViewModel>
@model List<MemberViewModel>
@{
ViewData["Title"] = "FormationDinner";
ViewData["Title"] = "FormationMember";
}
<div class="text-center">
<h1 class="display-4">Форматирование обедов</h1>
<h1 class="display-4">Формирование участников</h1>
</div>
@ -21,7 +21,7 @@
}
<p>
<a asp-action="Create">Создать заказ</a>
<a asp-action="Create">Создать участника</a>
</p>
<table class="table">
<thead>
@ -30,10 +30,10 @@
Номер
</th>
<th>
Имя
ФИО
</th>
<th>
Цена
Гражданство
</th>
</tr>
</thead>
@ -45,10 +45,10 @@
@Html.DisplayFor(modelItem => item.Id)
</td>
<td>
@Html.DisplayFor(modelItem => item.DinnerName)
@Html.DisplayFor(modelItem => item.MemberFIO)
</td>
<td>
@Html.DisplayFor(modelItem => item.DinnerPrice)
@Html.DisplayFor(modelItem => item.Citizenship)
</td>
</tr>
}

View File

@ -1,14 +1,14 @@
@{
ViewData["Title"] = "FormationOfDinnerInConferenceBookings";
ViewData["Title"] = "FormationMembersAndConference";
}
<div class="text-center">
<h1 class="display-4">Формирование обеда в брони по конференциям</h1>
<h1 class="display-4">Формирование участников и конференций</h1>
</div>
<div class="form-group">
<label for="exampleFormControlSelect2">Данные по бронирований конференций</label>
<label for="exampleFormControlSelect2">Данные по участникам</label>
<select multiple class="form-control" id="exampleFormControlSelect2">
<option>1</option>
<option>2</option>
@ -18,7 +18,7 @@
</select>
</div>
<div class="form-group">
<label for="exampleFormControlSelect2">Выбранный обед</label>
<label for="exampleFormControlSelect2">Выбранная конференция</label>
<select multiple class="form-control" id="exampleFormControlSelect2">
<option>1</option>
<option>2</option>
@ -28,7 +28,7 @@
</select>
</div>
<div class="form-group">
<label for="exampleFormControlSelect2">Доступный для выбора обед</label>
<label for="exampleFormControlSelect2">Доступные для выбора конференции</label>
<select multiple class="form-control" id="exampleFormControlSelect2">
<option>1</option>
<option>2</option>

View File

@ -8,7 +8,7 @@
}
<div class="text-center">
<h1 class="display-4">Заказы</h1>
<h1 class="display-4">Главная страница</h1>
</div>

View File

@ -1,16 +1,16 @@

@{
ViewData["Title"] = "ListOfMealPlans";
ViewData["Title"] = "ListOfMembers";
}
<div class="text-center">
<h1 class="display-4">Заказы</h1>
<h1 class="display-4">Участники</h1>
</div>
<form method="post">
<div class="form-group">
<label for="exampleFormControlSelect2">Доступный для выбора обед</label>
<label for="exampleFormControlSelect2">Доступные для выбора участники</label>
<select multiple class="form-control" id="exampleFormControlSelect2">
<option>1</option>
<option>2</option>

View File

@ -1,9 +1,9 @@
@{
ViewData["Title"] = "ShapingDinnerIntoRooms";
ViewData["Title"] = "ShapingMemberIntoMealPlans";
}
<div class="form-group">
<label for="exampleFormControlSelect2">Даннче по комнатам</label>
<label for="exampleFormControlSelect2">Данные по планам питания</label>
<select multiple class="form-control" id="exampleFormControlSelect2">
<option>1</option>
<option>2</option>
@ -13,7 +13,7 @@
</select>
</div>
<div class="form-group">
<label for="exampleFormControlSelect2">Выбранный обед</label>
<label for="exampleFormControlSelect2">Выбранный участник</label>
<select multiple class="form-control" id="exampleFormControlSelect2">
<option>1</option>
<option>2</option>
@ -23,7 +23,7 @@
</select>
</div>
<div class="form-group">
<label for="exampleFormControlSelect2">Доступный для выбора обед</label>
<label for="exampleFormControlSelect2">Доступный для выбора участник</label>
<select multiple class="form-control" id="exampleFormControlSelect2">
<option>1</option>
<option>2</option>

View File

@ -27,15 +27,15 @@
<a class="nav-link " asp-area="" asp-controller="Home" asp-action="Index">Главное меню</a>
<a class="nav-link " asp-area="" asp-controller="Home" asp-action="FormationDinner">Обед</a>
<a class="nav-link " asp-area="" asp-controller="Home" asp-action="FormationMember">Участник</a>
<a class="nav-link " asp-area="" asp-controller="Home" asp-action="ShapingDinnerIntoRooms">Комната</a>
<a class="nav-link " asp-area="" asp-controller="Home" asp-action="ShapingMemberIntoMealPlans">План питания</a>
<a class="nav-link " asp-area="" asp-controller="Home" asp-action="FormationOfDinnerInConferenceBookings">Бронирование конференций</a>
<a class="nav-link " asp-area="" asp-controller="Home" asp-action="FormationMembersAndConference">Конференции</a>
<a class="nav-link " asp-area="" asp-controller="Home" asp-action="ListOfMealPlans">Список планов питания</a>
<a class="nav-link " asp-area="" asp-controller="Home" asp-action="ListOfMembers">Список участников</a>
<a class="nav-link " asp-area="" asp-controller="Home" asp-action="Report">Отчет по обедам</a>
<a class="nav-link " asp-area="" asp-controller="Home" asp-action="Report">Отчет по участникам</a>
</div>
</div>