|
|
@if (item.AllowViewingFromProfile)
{
@Html.RouteLink(item.CustomerFromName, NopRouteNames.Standard.CUSTOMER_PROFILE, new { Id = item.FromCustomerId })
}
else
{
@item.CustomerFromName
}
|
@Html.RouteLink(item.Subject, NopRouteNames.Standard.VIEW_PM, new { privateMessageId = item.Id }, new { @class = (item.IsRead) ? "pm-read" : "pm-unread" })
|
@item.CreatedOn
|
}