Try your search with a different keyword or use * as a wildcard.
@model ProfileInfoModel
<div class="profile-info-box">
@if (!string.IsNullOrEmpty(Model.AvatarUrl))
{
<div class="avatar">
<img src="@(Model.AvatarUrl)" class="avatar-img" alt="Avatar" />
</div>
}
<div class="profile-stats">
<h2 class="title">
@T("Profile.Statistics")
</h2>
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProfilePageInfoUserdetails, additionalData = Model })
<ul class="stats">
@if (Model.LocationEnabled)
{
<li class="location">
<label>@T("Profile.Country"):</label>
<span>@Model.Location</span>
</li>
}
@if (Model.TotalPostsEnabled)
{
<li>
<label>@T("Profile.TotalPosts"):</label>
<span>@Model.TotalPosts</span>
</li>
}
@if (Model.JoinDateEnabled)
{
<li>
<label>@T("Profile.JoinDate"):</label>
<span>@Model.JoinDate</span>
</li>
}
@if (Model.DateOfBirthEnabled)
{
<li>
<label>@T("Profile.DateOfBirth"):</label>
<span>@Model.DateOfBirth</span>
</li>
}
</ul>
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProfilePageInfoUserstats, additionalData = Model })
</div>
@if (Model.PMEnabled)
{
<div class="send-pm">
@Html.RouteLink(T("Forum.PrivateMessages.PM").Text, NopRouteNames.Standard.SEND_PM, new { toCustomerId = Model.CustomerProfileId }, new { @class = "pm-button" })
</div>
}
</div>