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

{% trans "Latest entries" %}

{% for entry in latest|annotate_with_translations %} {% with entry|get_preferred_translation_from_request:request as title %} {% with entry.placeholders|choose_placeholder:"excerpt" as excerpt %}

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

{% render_placeholder excerpt %} {% endwith %} {% endwith %} {% empty %}

{% trans "No entries" %}

{% endfor %} {% endblock %} {% block right-col %} {% render_author_links %} {% render_month_links %} {% render_tag_links %} {% endblock %}