{% extends 'base.html' %} {% load staticfiles %} {% load i18n %} {% block title %}{{ page_user.profile.get_screen_name }}{% endblock %} {% block head %} {% endblock head %} {% block extrahead %} {% endblock extrahead %} {% block main %}
{% trans 'Feeds' %}
{{ feeds_count }}
{% trans 'Articles' %}
{{ article_count }}
{% trans 'Comments' %}
{{ article_comment_count }}
{% trans 'Questions' %}
{{ question_count }}
{% trans 'Answers' %}
{{ answer_count }}
{% trans 'Global Interactions' %}
{{ global_interactions }}
    {% for feed in feeds %} {% include 'feeds/partial_feed.html' with feed=feed %} {% endfor %}
{% endblock main %}