@model ca.AgNition.HyCropScout.Common.ScoutBundleListItem
@{
ViewBag.Title = "Create Bundle";
Layout = "~/Views/Shared/_Layout.cshtml";
}
@Html.MyValidationSummary(false, "* The following fields are required or are invalid")
@using (Html.BeginForm())
{
Create Bundle
@Html.LabelFor(m => m.Name)
@Html.ValidationMessageFor(m => m.Name, "* Bundle Name Required")
@Html.EditorFor(m => m.Name)
@Html.Label("Scouts")
@Html.ActionLink("Cancel", "Index", null, new { @class = "link_button" })
}