15 lines
617 B
Plaintext
15 lines
617 B
Plaintext
@using LeafWeb.WebCms.Controllers
|
|
@using LeafWeb.WebCms.Utility
|
|
@model Tuple<int, string>
|
|
@{
|
|
var leafInputId = Model.Item1;
|
|
var identifier = Model.Item2;
|
|
}
|
|
@using (Html.BeginUmbracoForm<QueueController>("Delete", null,
|
|
new { @class = "confirm clearfix", confirm_msg = "Deletion cannot be undone! Confirm deleting '" + identifier + "'." }))
|
|
{
|
|
<input type="hidden" name="id" value="@leafInputId"/>
|
|
<button type="submit" @Html.Partial("DisplayTemplates/_ViewDataCssClass") @if(ViewData.IsButtonDisabled()) {<text>disabled</text>}>
|
|
<span class="fa fa-remove"></span> Delete
|
|
</button>
|
|
} |