File tree Expand file tree Collapse file tree 1 file changed +4
-12
lines changed
ASP_Core_EF/Views/Student Expand file tree Collapse file tree 1 file changed +4
-12
lines changed Original file line number Diff line number Diff line change 5656 <table class =" table" >
5757 <thead >
5858 <tr >
59- <th >
60- Student
61- </th >
59+
6260 <th >
6361 Course
6462 </th >
7169 <th >
7270 Grade
7371 </th >
74- < th ></ th >
72+
7573 </tr >
7674 </thead >
7775 <tbody >
7876 @foreach ( var item in Model .Enrollments )
7977 {
8078 <tr >
81- <td >
82- @Html.DisplayFor(modelItem => item .Students .FirstName )
83- </td >
79+
8480 <td >
8581 @Html.DisplayFor(modelItem => item .Courses .CourseName )
8682 </td >
9389 <td >
9490 @Html.DisplayFor(modelItem => item .Grade )
9591 </td >
96- <td >
97- <a asp-action =" Edit" asp-route-id =" @item.EnrollmentId" >Edit </a > |
98- <a asp-action =" Details" asp-route-id =" @item.EnrollmentId" >Details </a > |
99- <a asp-action =" Delete" asp-route-id =" @item.EnrollmentId" >Delete </a >
100- </td >
92+
10193 </tr >
10294 }
10395 </tbody >
You can’t perform that action at this time.
0 commit comments