This commit is contained in:
Paul Schneider 2017-10-10 20:50:05 +02:00
commit 8a0539be4d
39 changed files with 28108 additions and 155 deletions

View file

@ -0,0 +1,42 @@
@model Yavsc.Models.Messaging.Announce
@{
ViewData["Title"] = "Details";
}
<h2>Details</h2>
<div>
<h4>Announce</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.For)
</dt>
<dd>
@Html.DisplayFor(model => model.For)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Message)
</dt>
<dd>
@Html.DisplayFor(model => model.Message)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Sender)
</dt>
<dd>
@Html.DisplayFor(model => model.Sender)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Topic)
</dt>
<dd>
@Html.DisplayFor(model => model.Topic)
</dd>
</dl>
</div>
<p>
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
<a asp-action="Index">Back to List</a>
</p>