@using ca.AgNition.HyCropScout.Common @model ScoutListItem @{ ViewBag.Title = "Create Scout"; } @**@
@using (Html.BeginForm()) { @Html.MyValidationSummary(false, "* The following fields are required or are invalid")

Create New Scout

@Html.LabelFor(m => m.DeviceId)
@Html.TextBoxFor(m => m.DeviceId, new { @class = "textbox_large" }) @Html.ValidationMessageFor(m => m.DeviceId, "*")
@Html.LabelFor(m => m.Name)
@Html.TextBoxFor(m => m.Name, new { @class = "textbox_large" }) @Html.ValidationMessageFor(m => m.Name, "*")
@Html.ActionLink("Cancel", "Index", null, new { @class = "link_button" })
}