<xf:if is="$user.user_id">
<xf:set var="$extras" value="{{ property('messageUserElements') }}" />
<xf:if contentcheck="true">
<div class="message-userExtras">
<xf:contentcheck>
<xf:if is="$extras.register_date">
<dl class="pairs pairs--justified">
<dt><xf:if is="property('xbMessageUserIcons')"><xf:fa icon="fa-calendar fa-fw" data-xf-init="tooltip" title="{{ phrase('joined') }}" /> <xf:else />{{ phrase('joined') }}</xf:if></dt>
<dd>{{ date($user.register_date) }}</dd>
</dl>
</xf:if>
<xf:if is="$extras.message_count">
<dl class="pairs pairs--justified pairs--xbBoxed">
<dt><xf:if is="property('xbMessageUserIcons')"><xf:fa icon="fa-comments fa-fw" data-xf-init="tooltip" title="{{ phrase('messages') }}" /> <xf:else />{{ phrase('messages') }}</xf:if></dt>
<dd>{$user.message_count|number}</dd>
</dl>
</xf:if>
<xf:if is="$extras.reaction_score">
<dl class="pairs pairs--justified">
<dt><xf:if is="property('xbMessageUserIcons')"><xf:fa icon="fa-thumbs-up fa-fw" data-xf-init="tooltip" title="{{ phrase('reaction_score') }}" /> <xf:else />{{ phrase('reaction_score') }}</xf:if></dt>
<dd>{$user.reaction_score|number}</dd>
</dl>
</xf:if>
<xf:if is="$extras.trophy_points && $xf.options.enableTrophies">
<dl class="pairs pairs--justified pairs--xbBoxed">
<dt><xf:if is="property('xbMessageUserIcons')"><xf:fa icon="fa-trophy fa-fw" data-xf-init="tooltip" title="{{ phrase('points') }}" /> <xf:else />{{ phrase('points') }}</xf:if></dt>
<dd>{$user.trophy_points|number}</dd>
</dl>
</xf:if>
<xf:if is="$extras.age && $user.Profile.age">
<dl class="pairs pairs--justified">
<dt><xf:if is="property('xbMessageUserIcons')"><xf:fa icon="fa-birthday-cake fa-fw" data-xf-init="tooltip" title="{{ phrase('age') }}" /> <xf:else />{{ phrase('age') }}</xf:if></dt>
<dd>{$user.Profile.age}</dd>
</dl>
</xf:if>
<xf:if is="$extras.location && $user.Profile.location">
<dl class="pairs pairs--justified">
<dt><xf:if is="property('xbMessageUserIcons')"><xf:fa icon="fa-map fa-fw" data-xf-init="tooltip" title="{{ phrase('location') }}" /> <xf:else />{{ phrase('location') }}</xf:if></dt>
<dd>
<xf:if is="$xf.options.geoLocationUrl">
<a href="{{ link('misc/location-info', '', {'location': $user.Profile.location}) }}" rel="nofollow noreferrer" target="_blank" class="u-concealed">{$user.Profile.location}</a>
<xf:else />
{$user.Profile.location}
</xf:if>
</dd>
</dl>
</xf:if>
<xf:if is="$extras.website && $user.Profile.website">
<dl class="pairs pairs--justified">
<dt><xf:if is="property('xbMessageUserIcons')"><xf:fa icon="fa-globe fa-fw" data-xf-init="tooltip" title="{{ phrase('website') }}" /> <xf:else />{{ phrase('website') }}</xf:if></dt>
<dd><a href="{$user.Profile.website}" rel="nofollow" target="_blank">{$user.Profile.website|url('host', phrase('visit_site'))}</a></dd>
</dl>
</xf:if>
<xf:if is="$extras.custom_fields">
<xf:macro template="custom_fields_macros" name="custom_fields_values"
arg-type="users"
arg-group="personal"
arg-set="{$user.Profile.custom_fields}"
arg-additionalFilters="{{ ['message'] }}"
arg-valueClass="pairs pairs--justified" />
<xf:if is="$user.canViewIdentities()">
<xf:macro template="custom_fields_macros" name="custom_fields_view"
arg-type="users"
arg-group="contact"
arg-set="{$user.Profile.custom_fields}"
arg-additionalFilters="{{ ['message'] }}"
arg-valueClass="pairs pairs--justified" />
</xf:if>
</xf:if>
</xf:contentcheck>
</div>
</xf:if>
</xf:if>