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

{% trans "User profile" %}{% if public_profiles_allowed %} {% trans "for" %} {{ fullname }}{% endif %}

{% if public_profiles_allowed or user.is_authenticated %} {% if is_user %}

This is you. Edit your private profile.

{% endif %} {% if creation %} {% endif %} {% if user.is_superuser %} {% endif %}
{% trans 'Name:' %} {{ fullname }}
{% trans 'Creation:' %} {{ creation|date:"DATETIME_FORMAT" }} ({{ creation|timesince }})
{% trans 'Votes for this user:' %} {{ likes }} {{ dislikes }}
{% trans 'Email addresses:' %}
    {% for addr in addresses %}
  • {{ addr }}
  • {% endfor %}
{% if addresses %}
{% gravatar addresses.0 100 %}
{% endif %} {% else %}

{% trans 'This server does not allow public profiles.' %}

{% endif %}
{% endblock %}