@model WeApp.Models.Account.TenantSelectionViewModel @{ ViewBag.Title = "Select Tenant"; }
@Html.AntiForgeryToken()
@L("TenantSelection")

@L("TenantSelection_Detail")

@for (int i = 0; i < Model.Tenants.Count; i++) { var tenant = Model.Tenants[i];
@{ string checkAttr = null; if (i == 0) { checkAttr = "checked=\"checked\""; } }
}