@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")
@foreach (ScoutListItem scout in CacheClass.ScoutList) {
@if (Model != null && Model.ScoutIds != null && Model.ScoutIds.Split(',').Contains(scout.Id.ToString())) { } else { }
}
@Html.ActionLink("Cancel", "Index", null, new { @class = "link_button" })
}