{% extends "hyperkitty/base.html" %} {% load i18n %} {% load hk_generic %} {% load gravatar %} {% block head_title %} {% trans 'User Profile' %} {% trans "for" %} {{ fullname }} - {{ block.super }} {% endblock %} {% block content %}

{% trans "User profile" %} {% trans "for" %} {{ fullname }}

{% if is_user %}

This is you. Edit your private profile.

{% endif %} {% if creation %} {% endif %}
{% trans 'Name:' %} {{ fullname }}
{% trans 'Creation:' %} {{ creation|date:"l, j F Y H:i:s" }} ({{ creation|timesince }})
{% trans 'Votes for this user:' %} +{{ likes }}/-{{ dislikes }}
{% gravatar email 100 %}
{% endblock %}