@using WeApp.Authorization @using WeApp.Views.Shared.Modals @model WeApp.Controllers.UserProfileViewModel @{ ViewBag.ActiveMenu = PermissionNames.Pages; ViewBag.Title = L("UserProfileTitle"); var userImagePath = string.IsNullOrEmpty(Model.ImagePath) ? "/Content/Image/user.png" : Model.ImagePath; var accountType = AbpSession.AccountType; } @section styles { }