diff --git a/SchoolAgainStudy/TeacherWebClient/Views/Home/Reports.cshtml b/SchoolAgainStudy/TeacherWebClient/Views/Home/Reports.cshtml
new file mode 100644
index 0000000..5d307ea
--- /dev/null
+++ b/SchoolAgainStudy/TeacherWebClient/Views/Home/Reports.cshtml
@@ -0,0 +1,23 @@
+@{
+ ViewData["Title"] = "Report";
+}
+
+
+ @section scripts{
+
+ }
diff --git a/SchoolAgainStudy/TeacherWebClient/Views/Home/_DiyListPartial.cshtml b/SchoolAgainStudy/TeacherWebClient/Views/Home/_DiyListPartial.cshtml
new file mode 100644
index 0000000..1fde12a
--- /dev/null
+++ b/SchoolAgainStudy/TeacherWebClient/Views/Home/_DiyListPartial.cshtml
@@ -0,0 +1,35 @@
+@using SchoolAgainStudyContracts.ViewModel;
+@model List
+
+
+
+ @{
+
+
+
+
+
+ Название
+ |
+
+ Материалы
+ |
+
+
+
+
+ @foreach (var item in Model)
+ {
+
+
+ @Html.DisplayFor(modelItem => item.Title)
+ |
+
+
+ |
+
+ }
+
+
+ }
+