{% extends 'mkt/base.html' %} {% block title %} {{ mkt_page_title(_('User Info for {0}')|f(profile.name)) }} {% endblock %} {% block content %} {{ mkt_breadcrumbs(product, [(None, _('Users')), (None, profile.name)]) }}

{% if 'id' in request.GET %} #{{ profile.id }} {% endif %} {{ profile.name }}

{{ _('Name') }}
{{ profile.name }}
{% if profile.location %}
{{ _('Location') }}
{{ profile.location }}
{% endif %} {% if profile.occupation %}
{{ _('Occupation') }}
{{ profile.occupation }}
{% endif %} {% if profile.homepage %}
{{ _('Homepage') }}
{{ profile.homepage }}
{% endif %} {% if not profile.emailhidden %}
{{ _('Email address') }}
{{ emaillink(profile.email) }}
{% endif %}
{{ _('User since') }}
{{ profile.created|datetime }}
{{ _('Number of apps developed') }}
{% with num=profile.apps_listed|length %} {% if num == 0 %} {{ _('0 apps') }} {% else %} {% trans num=num %} {{ num }} app {% pluralize %} {{ num }} apps {% endtrans %} {% endif %} {% endwith %}
{{ _("Average rating of developer's apps") }}
{{ profile.averagerating|float|stars }}
{% if profile.bio %}

{{ _('In a little more detail...') }}

{{ profile.bio|nl2br }}

{% endif %} {% if submissions.object_list %}

{{ _('My Submissions') }}

    {{ search_results(submissions.object_list, src='search') }}
{{ submissions|impala_paginator }}
{% endif %}
{% endblock %}