{% extends "base.html" %} {% load url from future %} {% load i18n %} {% load hk_generic %} {% load gravatar %} {% block title %} {% trans 'User Profile' %} for {{ fullname }} - {{ app_name|title }} {% endblock %} {% block content %}

User profile for {{ fullname }}

{% 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 %}

Subscriptions

{% if subscriptions %} {% for sub in subscriptions %} {% if sub.first_post %} {% else %} {% endif %} {% endfor %}
List Time of first activity First post Posts to this list Votes
{{ sub.list_name }} {{ sub.first_post|get_date|date:"l, j F Y H:i:s" }} {{ sub.first_post|get_date|timesince }} {{ sub.first_post.subject }} {{ sub.posts_count }} post{{ sub.posts_count|pluralize }} +{{ sub.likes }}/-{{ sub.dislikes }}no post yet
{% else %}

no subscriptions

{% endif %}
{% endblock %}