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

40 lines
965 B
Text
Raw Normal View History

2017-10-02 04:43:20 +02:00
@model Yavsc.Models.IT.Fixing.Bug
@{
2019-06-23 00:05:23 +01:00
ViewData["Title"] = @SR["Delete"];
2017-10-02 04:43:20 +02:00
}
2019-06-23 00:05:23 +01:00
<h2>@SR["Delete"]</h2>
2017-10-02 04:43:20 +02:00
2019-06-23 00:05:23 +01:00
<h3>@SR["AreYourSureYouWantToDeleteThis"]</h3>
2017-10-02 04:43:20 +02:00
<div>
<h4>Bug</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.FeatureId)
</dt>
<dd>
@Html.DisplayFor(model => model.FeatureId)
</dd>
2018-12-31 15:49:00 +00:00
<dt>
@Html.DisplayNameFor(model => model.Title)
</dt>
<dd>
@Html.DisplayFor(model => model.Title)
</dd>
2017-10-02 04:43:20 +02:00
<dt>
@Html.DisplayNameFor(model => model.Status)
</dt>
<dd>
@Html.DisplayFor(model => model.Status)
</dd>
</dl>
<form asp-action="Delete">
<div class="form-actions no-color">
<input type="submit" value="Delete" class="btn btn-default" /> |
2019-06-23 00:05:23 +01:00
<a asp-action="Index">@SR["Back to List"]</a>
2017-10-02 04:43:20 +02:00
</div>
</form>
</div>