+ @{
+ if (Model == null)
+ {
+
Авторизируйтесь
+ return;
+ }
+
+
+
+
+
+ Дата письма
+ |
+
+ Заголовок
+ |
+
+ Текст
+ |
+
+
+
+ @foreach (var item in Model)
+ {
+
+
+ @Html.DisplayFor(modelItem => item.DateDelivery)
+ |
+
+ @Html.DisplayFor(modelItem => item.Subject)
+ |
+
+ @Html.DisplayFor(modelItem => item.Body)
+ |
+
+ }
+
+
+ }
+
diff --git a/Typography/TypographyClientApp/Views/Shared/_Layout.cshtml b/Typography/TypographyClientApp/Views/Shared/_Layout.cshtml
index e62f8ff..638ddd2 100644
--- a/Typography/TypographyClientApp/Views/Shared/_Layout.cshtml
+++ b/Typography/TypographyClientApp/Views/Shared/_Layout.cshtml
@@ -28,6 +28,9 @@