{% load thumbnail %} {% load gravatar %} {% load ranks %} {% if userprofile %} {% if userprofile.avatar %} {% thumbnail userprofile.avatar "100x100" crop="center" as im %}
{% gravatar 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 %} {% if post.user %} {% if post.user.profile.all.0.avatar %} {% thumbnail post.user.profile.all.0.avatar "100x100" crop="center" as im %}{% gravatar post.user.email %}
{% endif %} {% if 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 %}