{% load thumbnail %} {% load gravatar %} {% load ranks %} {# Forum userview #} {% if userprofile %} {% if userprofile.avatar %} {% thumbnail userprofile.avatar "100x100" crop="center" as im %}

{{ userprofile.user.username }}

{% endthumbnail %} {% else %}

{% gravatar userprofile.user.email %}

{% endif %} {% if userprofile.user.username %}

{{ userprofile.user.username }}

{% endif %} {% if userprofile.signature %}

{{ userprofile.signature }}

{% endif %} {% if userprofile.user.posts %}

{{ userprofile.user.posts.count }} {{ _('posts') }}

{% rank userprofile.user.username userprofile.user.posts.count %}

{% endif %} {% endif %} {# Forum lists #} {% if post.user %} {% if post.user.profile.all.0.avatar %} {% thumbnail post.user.profile.all.0.avatar "100x100" crop="center" as im %}

{{ post.user.username }}

{% endthumbnail %} {% else %}

{% gravatar post.user.email %}

{% endif %} {% if post.user.username %}

{{ post.user.username }}

{% endif %} {% if post.user.profile.all.0.signature %}

{{ post.user.profile.all.0.signature }}

{% endif %} {% if post.user.posts %}

{{ post.user.posts.count }} {{ _('posts') }}

{% rank post.user.username post.user.posts.count %}

{% endif %} {% endif %}