исправления
This commit is contained in:
parent
7c2707df16
commit
86c160fb6b
@ -33,7 +33,7 @@ namespace HotelOrganiserApp.Controllers
|
|||||||
return View();
|
return View();
|
||||||
}
|
}
|
||||||
|
|
||||||
public IActionResult BindingConferenceBindingAndConference()
|
public IActionResult BindingRoomAndMealPlan()
|
||||||
{
|
{
|
||||||
return View();
|
return View();
|
||||||
}
|
}
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
@{
|
@{
|
||||||
ViewData["Title"] = "BindingConferenceBindingAndConference";
|
ViewData["Title"] = "BindingRoomAndMealPlan";
|
||||||
}
|
}
|
||||||
|
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<h2 class="display-4">Привязка брони по конфереции к конференциям</h2>
|
<h2 class="display-4">Привязка комнаты к плану питания</h2>
|
||||||
</div>
|
</div>
|
||||||
<form method="post">
|
<form method="post">
|
||||||
<label for="validationCustom04" class="form-label">Выбранная бронь по конференции</label>
|
<label for="validationCustom04" class="form-label">Выбранная комната</label>
|
||||||
<select class="form-select" id="validationCustom04" required>
|
<select class="form-select" id="validationCustom04" required>
|
||||||
<option selected disabled value="">Сделайте выбор</option>
|
<option selected disabled value="">Сделайте выбор</option>
|
||||||
<option>Данные из бд*</option>
|
<option>Данные из бд*</option>
|
||||||
</select>
|
</select>
|
||||||
<label for="validationCustom04" class="form-label">Выбранная конференция</label>
|
<label for="validationCustom04" class="form-label">Выбранный план питания</label>
|
||||||
<select class="form-select" id="validationCustom04" required>
|
<select class="form-select" id="validationCustom04" required>
|
||||||
<option selected disabled value="">Сделайте выбор</option>
|
<option selected disabled value="">Сделайте выбор</option>
|
||||||
<option>Данные из бд*</option>
|
<option>Данные из бд*</option>
|
@ -1,14 +1,14 @@
|
|||||||
@using HotelContracts.ViewModels
|
@using HotelContracts.ViewModels
|
||||||
|
|
||||||
|
|
||||||
@model List<DinnerViewModel>
|
@model List<MemberViewModel>
|
||||||
|
|
||||||
@{
|
@{
|
||||||
ViewData["Title"] = "FormationDinner";
|
ViewData["Title"] = "FormationMember";
|
||||||
}
|
}
|
||||||
|
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<h1 class="display-4">Форматирование обедов</h1>
|
<h1 class="display-4">Формирование участников</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
@ -21,7 +21,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<a asp-action="Create">Создать заказ</a>
|
<a asp-action="Create">Создать участника</a>
|
||||||
</p>
|
</p>
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<thead>
|
<thead>
|
||||||
@ -30,10 +30,10 @@
|
|||||||
Номер
|
Номер
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
Имя
|
ФИО
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th>
|
||||||
Цена
|
Гражданство
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@ -45,10 +45,10 @@
|
|||||||
@Html.DisplayFor(modelItem => item.Id)
|
@Html.DisplayFor(modelItem => item.Id)
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
@Html.DisplayFor(modelItem => item.DinnerName)
|
@Html.DisplayFor(modelItem => item.MemberFIO)
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
@Html.DisplayFor(modelItem => item.DinnerPrice)
|
@Html.DisplayFor(modelItem => item.Citizenship)
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
}
|
}
|
@ -1,14 +1,14 @@
|
|||||||
@{
|
@{
|
||||||
ViewData["Title"] = "FormationOfDinnerInConferenceBookings";
|
ViewData["Title"] = "FormationMembersAndConference";
|
||||||
}
|
}
|
||||||
|
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<h1 class="display-4">Формирование обеда в брони по конференциям</h1>
|
<h1 class="display-4">Формирование участников и конференций</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="exampleFormControlSelect2">Данные по бронирований конференций</label>
|
<label for="exampleFormControlSelect2">Данные по участникам</label>
|
||||||
<select multiple class="form-control" id="exampleFormControlSelect2">
|
<select multiple class="form-control" id="exampleFormControlSelect2">
|
||||||
<option>1</option>
|
<option>1</option>
|
||||||
<option>2</option>
|
<option>2</option>
|
||||||
@ -18,7 +18,7 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="exampleFormControlSelect2">Выбранный обед</label>
|
<label for="exampleFormControlSelect2">Выбранная конференция</label>
|
||||||
<select multiple class="form-control" id="exampleFormControlSelect2">
|
<select multiple class="form-control" id="exampleFormControlSelect2">
|
||||||
<option>1</option>
|
<option>1</option>
|
||||||
<option>2</option>
|
<option>2</option>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="exampleFormControlSelect2">Доступный для выбора обед</label>
|
<label for="exampleFormControlSelect2">Доступные для выбора конференции</label>
|
||||||
<select multiple class="form-control" id="exampleFormControlSelect2">
|
<select multiple class="form-control" id="exampleFormControlSelect2">
|
||||||
<option>1</option>
|
<option>1</option>
|
||||||
<option>2</option>
|
<option>2</option>
|
@ -8,7 +8,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<h1 class="display-4">Заказы</h1>
|
<h1 class="display-4">Главная страница</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,16 +1,16 @@
|
|||||||
|
|
||||||
@{
|
@{
|
||||||
ViewData["Title"] = "ListOfMealPlans";
|
ViewData["Title"] = "ListOfMembers";
|
||||||
}
|
}
|
||||||
|
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<h1 class="display-4">Заказы</h1>
|
<h1 class="display-4">Участники</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<form method="post">
|
<form method="post">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="exampleFormControlSelect2">Доступный для выбора обед</label>
|
<label for="exampleFormControlSelect2">Доступные для выбора участники</label>
|
||||||
<select multiple class="form-control" id="exampleFormControlSelect2">
|
<select multiple class="form-control" id="exampleFormControlSelect2">
|
||||||
<option>1</option>
|
<option>1</option>
|
||||||
<option>2</option>
|
<option>2</option>
|
@ -1,9 +1,9 @@
|
|||||||
@{
|
@{
|
||||||
ViewData["Title"] = "ShapingDinnerIntoRooms";
|
ViewData["Title"] = "ShapingMemberIntoMealPlans";
|
||||||
}
|
}
|
||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="exampleFormControlSelect2">Даннче по комнатам</label>
|
<label for="exampleFormControlSelect2">Данные по планам питания</label>
|
||||||
<select multiple class="form-control" id="exampleFormControlSelect2">
|
<select multiple class="form-control" id="exampleFormControlSelect2">
|
||||||
<option>1</option>
|
<option>1</option>
|
||||||
<option>2</option>
|
<option>2</option>
|
||||||
@ -13,7 +13,7 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="exampleFormControlSelect2">Выбранный обед</label>
|
<label for="exampleFormControlSelect2">Выбранный участник</label>
|
||||||
<select multiple class="form-control" id="exampleFormControlSelect2">
|
<select multiple class="form-control" id="exampleFormControlSelect2">
|
||||||
<option>1</option>
|
<option>1</option>
|
||||||
<option>2</option>
|
<option>2</option>
|
||||||
@ -23,7 +23,7 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="exampleFormControlSelect2">Доступный для выбора обед</label>
|
<label for="exampleFormControlSelect2">Доступный для выбора участник</label>
|
||||||
<select multiple class="form-control" id="exampleFormControlSelect2">
|
<select multiple class="form-control" id="exampleFormControlSelect2">
|
||||||
<option>1</option>
|
<option>1</option>
|
||||||
<option>2</option>
|
<option>2</option>
|
@ -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="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>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user