{{ _('Name') }} |
{{ profile.name }} |
{% if profile.location %}
{{ _('Location') }} |
{{ profile.location }} |
{% endif %}
{% if profile.occupation %}
{{ _('Occupation') }} |
{{ profile.occupation }} |
{% endif %}
{% if profile.homepage and profile.is_developer %}
{{ _('Homepage') }} |
{{ profile.homepage }} |
{% endif %}
{{ _('User since') }} |
{{ profile.created|datetime }} |
{% if own_profile or edit_any_user %}
{% if profile.last_login %}
{{ _('Time of last login') }} |
{{ profile.last_login|datetime('%B %e, %Y %H:%M:%S') }} |
{% endif %}
{% if profile.last_login_ip %}
{{ _('IP address of last login') }} |
{{ profile.last_login_ip }} |
{% endif %}
{% endif %}
{{ _('Number of add-ons developed') }}
|
{% with num=profile.num_addons_listed %}
{% if num == 0 %}
{{ _('{0} add-ons')|f(num) }}
{% else %}
{% if profile.is_artist and not profile.is_addon_developer %}
{% trans cnt=num, num=num|numberfmt %}
{{ num }} theme
{% pluralize %}
{{ num }} themes
{% endtrans -%}
{% else %}
{% trans cnt=num, num=num|numberfmt %}
{{ num }} add-on
{% pluralize %}
{{ num }} add-ons
{% endtrans -%}
{% endif %}
{% endif %}
{% endwith %}
|
{{ _("Average rating of developer's add-ons") }}
|
{{ profile.averagerating|float|stars }} |