{{ view_user.get_status_display() }}
|
{% if request.user|can_see_private_user_data(view_user) %}
{% trans %}update profile{% endtrans %}
{% endif %}
|
{% if view_user.real_name %}
{% trans %}real name{% endtrans %} |
{{view_user.real_name|escape}} |
{% endif %}
{% if request.user|can_see_private_user_data(view_user) %}
{% trans %}email{% endtrans %} |
{{view_user.email}} |
{% endif %}
{% if settings.GROUPS_ENABLED %}
{% trans %}groups{% endtrans %} |
|
{% endif %}
{% trans %}member since{% endtrans %} |
{{ macros.timeago(view_user.date_joined) }} |
{% if view_user.last_seen %}
{% trans %}last seen{% endtrans %} |
{{ macros.timeago(view_user.last_seen) }} |
{% endif %}
{% if view_user.website and show_profile_info %}
{% trans %}website{% endtrans %} |
{{ macros.user_website_link(
view_user,
max_display_length=30,
force_show=show_profile_info
)}}
|
{% endif %}
{% if request.user == view_user and
settings.TWITTER_SECRET and
settings.TWITTER_KEY and
settings.ENABLE_SHARING_TWITTER
%}
{% include "user_profile/twitter_sharing_controls.html" %}
{% endif %}
{% if view_user.location or (view_user.country and view_user.country.code != 'none') %}
{% trans %}location{% endtrans %} |
{{ macros.user_full_location(view_user) }} |
{% endif %}
{% if votes_today_left %}
{% trans %}todays unused votes{% endtrans %} |
{{ votes_today_left }} |
{% endif %}
{% if total_votes %}
{% trans %}votes{% endtrans %} |
{{ up_votes }}
{{ down_votes }}
|
{% endif %}