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

{% include "fragments/user_subscriptions.html" %}
{% endblock %}