Bug managment : deletions
This commit is contained in:
@ -45,7 +45,9 @@
|
||||
<td>
|
||||
<a asp-action="Edit" asp-route-id="@item.Id">Edit</a> |
|
||||
<a asp-action="Details" asp-route-id="@item.Id">Details</a> |
|
||||
<a asp-action="DeleteAllLike" asp-route-id="@item.Id">Delete</a>
|
||||
<form asp-action="DeleteAllLikeConfirmed" asp-route-id="@item.Id" method="POST">
|
||||
<input class="btm btm-primary" type="submit" value="Delete"></input>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
}
|
||||
|
@ -11,22 +11,22 @@
|
||||
<hr />
|
||||
<dl class="dl-horizontal">
|
||||
<dt>
|
||||
FeatureId"]
|
||||
Feature Id
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.FeatureId)
|
||||
</dd>
|
||||
<dt>
|
||||
Title"]
|
||||
Title
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.Title)
|
||||
</dd>
|
||||
<dt>
|
||||
Status"]
|
||||
Status
|
||||
</dt>
|
||||
<dd>
|
||||
@typeof(Yavsc.Models.IT.Fixing.BugStatus).GetEnumNames()[(int)Model.Status]
|
||||
@Html.DisplayFor(model => model.Status)
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
@ -35,6 +35,7 @@
|
||||
|
||||
</div>
|
||||
<p>
|
||||
[<a asp-action="DeleteAllLike" asp-route-id="@Model.Id">Delete all like this one</a> |
|
||||
<a asp-action="Edit" asp-route-id="@Model.Id">Edit</a> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
<a asp-action="Index">Back to List</a>]
|
||||
</p>
|
||||
|
Reference in New Issue
Block a user