@model EnVisage.Models.StatusModel @using EnVisage.Code; @{ ViewBag.Title = Model != null ? "Edit " + Model.Name : "Add New Status"; } @section Scripts { }
@using (Html.BeginForm("Edit", "Status", FormMethod.Post, new { @class = "panel form-horizontal" })) { @Html.AntiForgeryToken() @Html.HiddenFor(model => model.Id)