{% extends "cmsplugin_blog/cmsplugin_blog_base.html" %} {% load i18n cmsplugin_blog_tags simple_translation_tags %} {% block left-col %}

{% 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 %} {% endblock %} {% block right-col %} {% render_month_links %} {% render_tag_links %} {% endblock %}