Try your search with a different keyword or use * as a wildcard.
@model ProfileInfoModel
@if (!string.IsNullOrEmpty(Model.AvatarUrl))
{
}
@T("Profile.Statistics")
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProfilePageInfoUserdetails, additionalData = Model })
@if (Model.LocationEnabled)
{
-
@Model.Location
}
@if (Model.TotalPostsEnabled)
{
-
@Model.TotalPosts
}
@if (Model.JoinDateEnabled)
{
-
@Model.JoinDate
}
@if (Model.DateOfBirthEnabled)
{
-
@Model.DateOfBirth
}
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProfilePageInfoUserstats, additionalData = Model })
@if (Model.PMEnabled)
{
@Html.RouteLink(T("Forum.PrivateMessages.PM").Text, "SendPM", new { toCustomerId = Model.CustomerProfileId }, new { @class = "pm-button" })
}