{% extends "hyperkitty/user_profile/base.html" %} {% load i18n %} {% load hk_generic %} {% block user_profile_content %} {% if subscriptions %} {% for sub in subscriptions %} {% ifchanged sub.list_name %} {% endifchanged %} {% if sub.first_post %} {% endfor %}
{{ sub.list_name }}
{{ sub.first_post.subject }}
{{ sub.first_post.date|timesince }} {% trans "since first post" %}
{{ sub.posts_count }} {% trans "post" %}{{ sub.posts_count|pluralize }}
{{ sub.likes }} {{ sub.dislikes }} {% else %}
{% trans "no post yet" %} {% endif %}
{% for sub in subscriptions %} {% if sub.first_post %} {% else %} {% endif %} {% endfor %}
{% trans "List" %} {% trans "Time since the first activity" %} {% trans "First post" %} {% trans "Posts to this list" %} {% trans "Votes" %}
{{ sub.list_name }} {{ sub.first_post.date|timesince }} {{ sub.first_post.subject }} {{ sub.posts_count }} {% trans "post" %}{{ sub.posts_count|pluralize }} {{ sub.likes }} {{ sub.dislikes }} {% trans "no post yet" %}
{% else %}

{% trans "no subscriptions" %}

{% endif %} {% endblock %}