{% extends "sora/profiles/profile.html" %}
{% load i18n %}
{% load humanize %}
{% load url from future %}
{% import "_forms.html" as form_theme with context %}
{% import "sora/macros.html" as macros with context %}
{% block title %}{{ macros.page_title(profile.username, _('Member Details')) }}{% endblock %}
{% block tab %}
{% trans %}Account Details{% endtrans %}
|
{% trans %}Member Since{% endtrans %}
|
{{ profile.join_date|date }}
|
{% trans %}Last Seen{% endtrans %}
|
{{ profile.last_date|reltimesince }} {{ profile.last_date|date("DATETIME_FORMAT") }}
|
{% 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 %}
|
{% 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 }}
|
{% endblock %}