{% load i18n simple_translation_tags %}

{% trans "Entries for" %} {{ month|date:"F Y" }}

{% for object in object_list|annotate_with_translations %} {% with object|get_preferred_translation_from_request:request as title %}

{{ object.pub_date|date:"d b Y" }}
{{ title }} {{ object|render_language_choices:request|safe }}
{{ title.excerpt }}

{% endwith %} {% empty %}

{% trans "No entries for this month" %}

{% endfor %}