yavsc/src/Yavsc/Views/Notifications/Delete.cshtml

65 lines
1.6 KiB
Plaintext

@model Yavsc.Models.Messaging.Notification
@{
7 years ago
ViewData["Title"] = @SR["Delete"];
}
7 years ago
<h2>@SR["Delete"]</h2>
7 years ago
<h3>@SR["AreYourSureYouWantToDeleteThis"]</h3>
<div>
<h4>Notification</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.body)
</dt>
<dd>
@Html.DisplayFor(model => model.body)
</dd>
<dt>
@Html.DisplayNameFor(model => model.click_action)
</dt>
<dd>
@Html.DisplayFor(model => model.click_action)
</dd>
<dt>
@Html.DisplayNameFor(model => model.color)
</dt>
<dd>
@Html.DisplayFor(model => model.color)
</dd>
<dt>
@Html.DisplayNameFor(model => model.icon)
</dt>
<dd>
@Html.DisplayFor(model => model.icon)
</dd>
<dt>
@Html.DisplayNameFor(model => model.sound)
</dt>
<dd>
@Html.DisplayFor(model => model.sound)
</dd>
<dt>
@Html.DisplayNameFor(model => model.tag)
</dt>
<dd>
@Html.DisplayFor(model => model.tag)
</dd>
<dt>
@Html.DisplayNameFor(model => model.title)
</dt>
<dd>
@Html.DisplayFor(model => model.title)
</dd>
</dl>
<form asp-action="Delete">
<div class="form-actions no-color">
<input type="submit" value="Delete" class="btn btn-default" /> |
7 years ago
<a asp-action="Index">@SR["Back to List"]</a>
</div>
</form>
</div>