Try your search with a different keyword or use * as a wildcard.
@model ProfileIndexModel
@{
Layout = "_ColumnsOne";
//title
NopHtml.AddTitleParts(T("PageTitle.Profile").Text);
//page class
NopHtml.AppendPageCssClassParts("html-profile-page");
}
@Model.ProfileTitle
@{
var selectPostsTab = Model.ForumsEnabled && Model.PagingPosts ? ".tabs( 'option', 'active', 1 )" : "";
}
- @T("Profile.PersonalInfo")
@if (Model.ForumsEnabled)
{
- @T("Profile.LatestPosts")
}
@await Component.InvokeAsync(typeof(ProfileInfoViewComponent), new { customerProfileId = Model.CustomerProfileId })
@if (Model.ForumsEnabled)
{
@await Component.InvokeAsync(typeof(ProfilePostsViewComponent), new { customerProfileId = Model.CustomerProfileId, pageNumber = Model.PostsPage })
}