106 lines
2.0 KiB
Plaintext
106 lines
2.0 KiB
Plaintext
@model WebApplication1.Models.news
|
|
|
|
@{
|
|
ViewBag.Title = "Details";
|
|
|
|
}
|
|
|
|
<h2>Details</h2>
|
|
|
|
<div>
|
|
<h4>news</h4>
|
|
<hr />
|
|
<dl>
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.title)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.title)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.image)
|
|
</dt>
|
|
|
|
<dd>
|
|
<img src="@Url.Content(Model.image)" alt="@Model.title" height="270" width="200" />
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.link)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.link)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.summary)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.summary)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.cat)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.cat)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.tag)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.tag)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.publishDate)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.publishDate)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.userID)
|
|
</dt>
|
|
|
|
<dd>
|
|
@ViewBag.user.displayname
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.Content)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.Content)
|
|
</dd>
|
|
|
|
<dt>
|
|
@Html.DisplayNameFor(model => model.views)
|
|
</dt>
|
|
|
|
<dd>
|
|
@Html.DisplayFor(model => model.views)
|
|
</dd>
|
|
|
|
</dl>
|
|
</div>
|
|
<p>
|
|
@if (@ViewBag.role == 1)
|
|
{
|
|
@Html.ActionLink("Edit", "Edit", new { id = Model.ID })
|
|
<span>
|
|
|
|
|
</span>
|
|
}
|
|
@Html.ActionLink("Back to List", "Index")
|
|
</p>
|