@using Bit.SharedWeb.Utilities @using Microsoft.AspNetCore.Mvc.TagHelpers @model OrganizationUnassignedToProviderSearchViewModel @{ ViewData["Title"] = "Add Existing Organization"; var providerId = ViewContext.RouteData.Values["id"]; }

Add Existing Organization

@if (!Model.Items.Any()) { } else { @for (var i = 0; i < Model.Items.Count; i++) { } }
All Name Plan
No results to list.
@Html.HiddenFor(m => Model.Items[i].Id, new { @readonly = "readonly", autocomplete = "off" }) @Html.CheckBoxFor(m => Model.Items[i].Selected) @Html.ActionLink(Model.Items[i].Name, "Edit", "Organizations", new { id = Model.Items[i].Id }, new { target = "_blank" }) @(Model.Items[i].PlanType.GetDisplayAttribute()?.Name ?? Model.Items[i].PlanType.ToString())