{# vim: set ts=2 et sts=2 sw=2: #} {% for tweet in tweets -%}
  • {{ tweet.user }} {% if tweet.replies %} {% if tweet.reply_count > 1 %} {{ ngettext('{0} and {1} other replied', '{0} and {1} others replied', tweet.reply_count - 1)|f(tweet.replies[-1].user, tweet.reply_count - 1) }} {% else %} {{ _('{0} replied')|f(tweet.replies[0].user) }} {% endif %} {% elif settings.CC_SHOW_REPLIES %} {{ _('Reply now') }} {% endif %}

    {{ tweet.text|safe }}

  • {% endfor %}