Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

Default.cshtml

@model ProfileInfoModel
@if (!string.IsNullOrEmpty(Model.AvatarUrl)) {
Avatar
}
@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" })
}