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

{% trans "Tweets" %}

{# @@@ can the publish to twitter checkbox actually be part of form and then we can use uni-form #}
{% csrf_token %}

{% trans "What are you doing?" %}

{{ form.as_p }} {% if twitter_authorized %}

{% trans "You have authorized a twitter account." %}

{% endif %}

{% trans "chars left." %}

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