{% extends "cranefly/profiles/profile.html" %} {% import "cranefly/macros.html" as macros with context %} {% block title %}{{ macros.page_title(lang_member_details(), profile.username) }}{% endblock %} {% block tab %}
{% trans %}Account Details{% endtrans %} | |
---|---|
{% trans %}E-mail Address{% endtrans %} | {{ profile.email }} |
{% 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 %}{% 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 %} |
{% 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 }} |
{% 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 %} |