<h2><%= H(Model.Title) %></h2> <p class="alert alert-danger">Are you sure you want to delete this Settings?</p> <%= HTML.FormTag("Settings", "DeletePost", empty, Array("class", "form-horizontal")) %> <%= HTML.Hidden("nonce", HTMLSecurity.GetAntiCSRFToken("SettingsDeleteForm")) %> <%= HTML.Hidden("Id", Model.Settings.ID) %> <div class="col-md-10"> <div class="form-group"> <%= HTML.Button("submit", "<i class='glyphicon glyphicon-remove'></i> Confirm Delete", "btn-danger") %> <%= HTML.LinkToExt("Cancel", "Settings", "Index", empty, Array("class", "btn btn-success")) %> <div class="row"> <div class="col-md-4"> <div class="form-group"> <label for="Name">Name</label> <%= HTML.TextboxExt("Name", Model.Settings.Name, Array("class", "form-control")) %> </div> </div> </div> <div class="row"> <div class="col-md-4"> <div class="form-group"> <label for="Value">Value</label> <%= HTML.TextboxExt("Value", Model.Settings.Value, Array("class", "form-control")) %> </div> </div> </div> </div> </div> </form>