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

40 lines
962 B
Text
Raw Normal View History

2018-12-31 15:48:16 +00:00
@model Yavsc.Models.IT.Evolution.Feature
2017-10-02 04:43:20 +02:00
@{
2023-03-20 09:13:16 +00:00
ViewData["Title"] = "Delete";
2017-10-02 04:43:20 +02:00
}
2023-03-20 09:13:16 +00:00
<h2>Delete</h2>
2017-10-02 04:43:20 +02:00
2023-03-20 09:13:16 +00:00
<h3>AreYourSureYouWantToDeleteThis</h3>
2017-10-02 04:43:20 +02:00
<div>
<h4>Feature</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.Description)
</dt>
<dd>
@Html.DisplayFor(model => model.Description)
</dd>
<dt>
@Html.DisplayNameFor(model => model.ShortName)
</dt>
<dd>
@Html.DisplayFor(model => model.ShortName)
</dd>
<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" /> |
2023-03-20 09:13:16 +00:00
<a asp-action="Index">Back to List</a>
2017-10-02 04:43:20 +02:00
</div>
</form>
</div>