51 lines
942 B
Plaintext
51 lines
942 B
Plaintext
@model ContosoUniversity.Models.Course
|
|
|
|
@{
|
|
ViewBag.Title = "Details";
|
|
}
|
|
|
|
<h2>Details</h2>
|
|
|
|
<div>
|
|
<h4>Course</h4>
|
|
<hr />
|
|
<dl class="dl-horizontal">
|
|
<dt>
|
|
Department
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.Department.Name)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.CourseID)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.CourseID)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.Title)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.Title)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.Credits)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.Credits)
|
|
</dd>
|
|
|
|
</dl>
|
|
</div>
|
|
<p>
|
|
@Html.ActionLink("Edit", "Edit", new { id = Model.CourseID }) |
|
|
@Html.ActionLink("Back to List", "Index")
|
|
</p>
|