{% extends "impala/base_shared.html" %} {% block title %}{{ page_title(_('User Info for {0}')|f(profile.name)) }}{% endblock %} {% block bodyclass %}meet gutter profile{% endblock %} {% block content %} {{ impala_breadcrumbs([(None, profile.name)]) }}
{% if own_profile %} {{ _('Edit profile') }} {% endif %} {% if edit_any_user %} {{ _('Manage user') }} {% endif %} {% if abuse_form %} {{ _('Report user') }} {% endif %}

{{ profile.name }}

{{ _('About me') }}

{{ profile|user_vcard(is_profile=True) }}
{% if profile.bio %}

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

{{ profile.bio|nl2br|no_links }}

{% endif %}
{# For anchors. #} {% if addons.object_list or personas %}
{% endif %} {% if addons.object_list %}

{{ _("Add-ons I've created") }}

{{ impala_addon_listing_items(addons.object_list, field=sorting, src='userprofile') }}
{{ addons|impala_paginator }}
{% endif %} {% if personas %}
{{ _('View all') }} {% if limited_personas %}

{{ _("My Most Popular Themes") }}

{% else %}

{{ _("Themes I've created") }}

{% endif %} {{ personas|impala_persona_grid(cols=5, pagesize=THEMES_LIMIT) }}
{% endif %} {% if own_coll or fav_coll %} {% endif %}

{{ _('My Reviews') }}

{% if reviews %} {% for review in reviews %} {% if hasOneToOne(review, 'addon') %} {% set addon = review.addon %} {% with show_addon = True %} {% include "reviews/review.html" %} {% endwith %} {% endif %} {% endfor %} {{ edit_review_form() }} {% else %}

{{ _('No add-on reviews yet.') }}

{% endif %}
{{ reviews|impala_paginator }}
{% endblock %} {% block popups %} {{ report_review_popup() }} {% if abuse_form %} {% endif %} {% endblock %}