diff --git a/git/JurasicZoo/ZooClientApp/Views/Home/CreateRoute.cshtml b/git/JurasicZoo/ZooClientApp/Views/Home/CreateRoute.cshtml new file mode 100644 index 0000000..a4ff1d8 --- /dev/null +++ b/git/JurasicZoo/ZooClientApp/Views/Home/CreateRoute.cshtml @@ -0,0 +1,49 @@ +@{ + ViewData["Title"] = "CreateRoute"; +} + +
+

Создание маршрута

+
+
+
+
Название:
+
+ +
+
+
+
Заповедники:
+
+ +
+
+
+
Дата:
+
+ +
+
+
+
+
+ +
+
+
+@section Scripts + { + +} \ No newline at end of file diff --git a/git/JurasicZoo/ZooClientApp/Views/Home/Index.cshtml b/git/JurasicZoo/ZooClientApp/Views/Home/Index.cshtml index 5c85796..ce53f9b 100644 --- a/git/JurasicZoo/ZooClientApp/Views/Home/Index.cshtml +++ b/git/JurasicZoo/ZooClientApp/Views/Home/Index.cshtml @@ -4,72 +4,14 @@ ViewData["Title"] = "Home Page"; }
-

Маршруты

-
-
- @{ - if (Model == null) - { -

Авторизируйтесь

- return; - } -

- Создать Маршруты -

- - - - - - - - - - - - - @foreach (var item in Model) - { - - - - - - - - - } - -
- Номер - - Изделие - - Дата начала - - Дата окончания - - Цена - - Статус -
- @Html.DisplayFor(modelItem => - item.Id) - - @Html.DisplayFor(modelItem => - item.RouteName) - - @Html.DisplayFor(modelItem => - item.DateStart) - - @Html.DisplayFor(modelItem => - item.DateFinish) - - @Html.DisplayFor(modelItem => - item.RoutePrice) - - @Html.DisplayFor(modelItem => - item.Status) -
- } +

Приложение "Зоопарк "Юрский период". Клиент"

+
+ + Посещения врача + Покупки лекарств + Политика + Отчеты + Вход + Регистрация +
\ No newline at end of file diff --git a/git/JurasicZoo/ZooClientApp/Views/Home/IndexRoute.cshtml b/git/JurasicZoo/ZooClientApp/Views/Home/IndexRoute.cshtml new file mode 100644 index 0000000..8e94b8c --- /dev/null +++ b/git/JurasicZoo/ZooClientApp/Views/Home/IndexRoute.cshtml @@ -0,0 +1,56 @@ +@using ZooContracts.ViewModels + +@model List + +@{ + ViewData["Title"] = "Routes"; +} + +
+

Маршруты

+
+ + +
+ @{ + if (Model == null) + { +

Авторизируйтесь

+ return; + } +

+ Создать маршрут +

+ + + + + + + + + + @foreach (var item in Model) + { + + + + + + } + +
+ Номер + + Маршрут + + Дата начала +
+ @Html.DisplayFor(modelItem => item.Id) + + @Html.DisplayFor(modelItem => item.RoutePrice) + + @Html.DisplayFor(modelItem => item.DateStart) +
+ } +
\ No newline at end of file