{% comment %} Display a list of the accounts we're showing tweets for. Expects: * account_list - All the accounts we're showing tweets for. * count - The number of tweets. * list_type - 'recent' (default) or 'favorites'. {% endcomment %} {% load l10n %}

{{ count|localize }} Tweet{{ count|pluralize }} {% if list_type and list_type == 'favorites' %} liked {% endif %} {% if account_list|length == 1 %} by {{ account_list.0 }} {% else %} by {{ account_list|length }} user{{ account_list|length|pluralize }} {% endif %}

{% if account_list|length > 1 %} {% endif %}