Files
LeafWeb/WebCms/Views/Shared/DisplayTemplates/_CancelForm.cshtml
T
2017-01-27 14:07:36 -05:00

14 lines
521 B
Plaintext

@using LeafWeb.WebCms.Controllers
@model Tuple<int, string>
@{
var leafInputId = Model.Item1;
var identifier = Model.Item2;
}
@using (Html.BeginUmbracoForm<QueueController>("Cancel", null,
new { @class = "confirm clearfix", confirm_msg = "Cancelling cannot be undone! Confirm cancelling '" + identifier + "'." }))
{
<input type="hidden" name="id" value="@leafInputId"/>
<button type="submit" class="btn btn-link">
<span class="glyphicon glyphicon-ban-circle"></span> Cancel
</button>
}