<%= H(Model.Title) %>
<%= HTML.FormTag("Kit", "EditPost", empty, empty) %>
<%= HTML.Hidden("nonce", HTMLSecurity.GetAntiCSRFToken("KitEditForm")) %>
<%= HTML.Hidden("Id", Model.Kit.ID) %>
<%= HTML.TextboxExt("JobNumber", Model.Kit.JobNumber, Array("class", "form-control")) %>
<%= HTML.TextboxExt("Jcode", Model.Kit.Jcode, Array("class", "form-control")) %>
<%= HTML.TextboxExt("CreatedOn", Model.Kit.CreatedOn, Array("class", "form-control")) %>
<%= HTML.TextboxExt("LabelsPrinted", Model.Kit.LabelsPrinted, Array("class", "form-control")) %>
<%= HTML.TextboxExt("ExportedToSnailWorks", Model.Kit.ExportedToSnailWorks, Array("class", "form-control")) %>
<%= HTML.TextboxExt("InkJetJob", Model.Kit.InkJetJob, Array("class", "form-control")) %>
<%= HTML.TextboxExt("JobType", Model.Kit.JobType, Array("class", "form-control")) %>
<%= HTML.TextboxExt("Filename", Model.Kit.Filename, Array("class", "form-control")) %>
<%= HTML.TextboxExt("Cass", Model.Kit.Cass, Array("class", "form-control")) %>
<%= HTML.TextboxExt("Status", Model.Kit.Status, Array("class", "form-control")) %>
<%= HTML.TextboxExt("OutboundSTID", Model.Kit.OutboundSTID, Array("class", "form-control")) %>
<%= HTML.TextboxExt("InboundSTID", Model.Kit.InboundSTID, Array("class", "form-control")) %>
<% = HTML.Button("submit", " Save", "btn-primary") %>
<%= HTML.LinkToExt(" Delete", "Kit", "Delete", Array("id", Model.Kit.ID), Array("class", "btn btn-danger")) %>
<%= HTML.LinkToExt("Cancel", "Kit", "Index", empty, Array("class", "btn btn-default")) %>