@using Leica.Spider.BusinessCenter.WCFInterfaces @using Leica.Spider.BusinessCenter.Frontend.Utils @model Leica.Spider.BusinessCenter.Frontend.Models.GroupSubscriptionDetailViewModel @{ ViewBag.Title = Lang.Raw("IDS_SUBSCRIPTIONS_DETAIL_GROUP_SUBSCRIPTION_HEADER") + " - " + Model.GroupSubscriptionId; UserPrivileges currentPrivilege = ViewBag.UserRole; var isEditAllowed = (currentPrivilege == UserPrivileges.MasterAdmin || currentPrivilege == UserPrivileges.DistributionChannelAdministrator) && Model.Status != (int) GroupSubscriptionStatus.Active && Application.IsClmValid; var isEditDisabledStr = !isEditAllowed ? " disabled" : ""; string statusLabel = ViewBag.SubscriptionStatusLabel; } @section styles { @Styles.Render("~/Styles/Admin/GroupSubscriptions/Details") } @section scripts { @Scripts.Render("~/Scripts/Admin/GroupSubscriptions/Details") }