diff --git a/SchoolAgainStudy/StudentWebClient/Views/Home/SendingEmail.cshtml b/SchoolAgainStudy/StudentWebClient/Views/Home/SendingEmail.cshtml new file mode 100644 index 0000000..21c04c1 --- /dev/null +++ b/SchoolAgainStudy/StudentWebClient/Views/Home/SendingEmail.cshtml @@ -0,0 +1,22 @@ +@{ + ViewData["Title"] = "Report"; +} +
+ +
+
Интересы:
+
+ @Html.ListBox("interests", (MultiSelectList)ViewBag.Interests) +
+
+
+
+
+
+
+
+@section scripts{ + \ No newline at end of file diff --git a/SchoolAgainStudy/StudentWebClient/Views/Home/_InterestListPartial.cshtml b/SchoolAgainStudy/StudentWebClient/Views/Home/_InterestListPartial.cshtml new file mode 100644 index 0000000..2d21d9d --- /dev/null +++ b/SchoolAgainStudy/StudentWebClient/Views/Home/_InterestListPartial.cshtml @@ -0,0 +1,33 @@ +@using SchoolAgainStudyContracts.ViewModel; +@model List + + +
+ @{ + + + + + + + + + + + @foreach (var item in Model) + { + + + + + } + +
+ Название + + Интересы +
+ @Html.DisplayFor(modelItem => item.InterestTitle) +
+ } +
\ No newline at end of file