-
-
Save iamlucianojr/41dd854171b190c23ff25782e3d16934 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@foreach (var item in Model) | |
{ | |
<tr> | |
<td> | |
@Html.DisplayFor(modelItem => item.CourseID) | |
</td> | |
<td> | |
@Html.DisplayFor(modelItem => item.Title) | |
</td> | |
<td> | |
@Html.DisplayFor(modelItem => item.Credits) | |
</td> | |
<td> | |
@Html.DisplayFor(modelItem => item.Department.Name) | |
</td> | |
<td> | |
@Html.ActionLink("Edit", "Edit", new { id = item.CourseID }) | | |
@Html.ActionLink("Details", "Details", new { id = item.CourseID }) | | |
@Html.ActionLink("Delete", "Delete", new { id = item.CourseID }) | |
</td> | |
</tr> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment