{% extends "cranefly/profiles/profile.html" %}
{% import "_forms.html" as form_theme with context %}
{% import "cranefly/macros.html" as macros with context %}
{% block title %}{{ macros.page_title(_('Member Details'), profile.username) }}{% endblock %}
{% block tab %}
{% trans %}Account Details{% endtrans %}
|
{% if acl.users.can_see_users_emails() %}
{% trans %}E-mail Address{% endtrans %}
|
{{ profile.email }}
|
{% endif %}
{% trans %}Member Since{% endtrans %}
|
{{ profile.join_date|date }}
|
{% trans %}Last Seen{% endtrans %}
|
{% if not hidden or acl.users.can_see_hidden_users() %}
{{ profile.last_date|reltimesince }} {{ profile.last_date|date("DATETIME_FORMAT") }}
{% else %}
{% trans %}Hidden{% endtrans %}
{% endif %}
|
{% trans %}Forums Activity{% endtrans %}
|
{% trans %}Posts Written{% endtrans %}
|
{{ profile.posts|intcomma }}
|
{% trans %}Threads Started{% endtrans %}
|
{{ profile.threads|intcomma }}
|
{% trans %}Votes Cast{% endtrans %}
|
{{ profile.votes|intcomma }}
|
{% trans %}Ranking Performance{% endtrans %}
|
{% trans %}Rank{% endtrans %}
|
{% if profile.rank %}{{ _(profile.rank.name) }}{% else %}{% trans %}Not Ranked{% endtrans %}{% endif %}
|
{% if settings.ranking_positions_visible or settings.ranking_scores_visible %}
{% if settings.ranking_positions_visible %}{% trans %}Ranking Position{% endtrans %}{% else %}{% trans %}Score{% endtrans %}{% endif %}
|
{% if settings.ranking_positions_visible %}
#{{ profile.get_ranking()|intcomma }}{% if settings.ranking_scores_visible %} {{ profile.score|intcomma }}{% endif %}
{% else %}{{ profile.score|intcomma }}
{% endif %}
|
{% endif %}
{% trans %}Karma Received{% endtrans %}
|
+ {{ profile.karma_p }} / - {{ profile.karma_n }}
|
{% trans %}Karma Given{% endtrans %}
|
+ {{ profile.karma_given_p }} / - {{ profile.karma_given_n }}
|
{% trans %}Interactions{% endtrans %}
|
{% trans %}Followers{% endtrans %}
|
{{ profile.followers|intcomma }}
|
{% trans %}Following{% endtrans %}
|
{{ profile.following|intcomma }}
|
{% if acl.users.can_see_users_trails() %}
{% trans %}Registration Details{% endtrans %}
|
{% trans %}IP Address{% endtrans %}
|
{{ profile.join_ip }}
|
{% trans %}UserAgent String{% endtrans %}
|
{% if profile.join_agent %}{{ profile.join_agent }}{% else %}{% trans %}Created from console{% endtrans %}{% endif %}
|
{% trans %}Last Visit Details{% endtrans %}
|
{% trans %}IP Address{% endtrans %}
|
{{ profile.last_ip }}
|
{% trans %}UserAgent String{% endtrans %}
|
{% if profile.last_agent %}{{ profile.last_agent }}{% else %}{% trans %}Created from console{% endtrans %}{% endif %}
|
{% endif %}
{% endblock %}