{% extends "microblogging/base.html" %} {% load i18n %} {% load microblogging_tags %} {% load account_tags %} {% block head_title %}{% blocktrans %}Tweets{% endblocktrans %}{% endblock %} {% block extra_head %} {% endblock %} {% block body %}
{% blocktrans with user.followed.count as follow_count and user.followed.count|pluralize:_("person,people") as follow_name %} These are tweets from the {{ follow_count }} {{ follow_name }} you are following (plus your own){% endblocktrans %}:
{% tweet_listing tweets 1 0 %} {% endblock %} {% block extra_body %} {% endblock %}