{% extends "zwitschern/base.html" %} {% load i18n %} {% block head_title %}{% blocktrans %}Friends' Tweets{% endblocktrans %}{% endblock %} {% block body %}

{% trans "Friends' Tweets" %}

{% trans "These are tweets from your friends:" %}

{% if object_list %} {% for tweet in object_list %}

{{ tweet.sender }} {{ tweet.html|safe|urlize }}

{% blocktrans with tweet.sent|timesince as tweet_age %}{{ tweet_age }} ago{% endblocktrans %} {% trans "reply" %}
{% endfor %} {% else %}

{% blocktrans %}No tweets yet.{% endblocktrans %}

{% endif %} {% endblock %}