{% extends "lfc/base.html" %} {% load i18n %} {% load lfc_tags %} {% load portlets_tags %} {% load tagging_tags %} {% load pagination_tags %} {% load comments %} {% block content %}

{% trans 'Entries for' %} {{ month }} {{ year }}

{% for entry in entries %}

{{ entry.title }}

{% trans 'Posted on' %} {{entry.publication_date|date:"d.m.Y"}} {% trans 'by' %} {% if lfc_context.creator.last_name %} {{ entry.creator.first_name }} {{ entry.creator.last_name }} {% else %} {{ entry.creator.username }} {% endif %} {% tags_for_object entry as tag_list %} {% if tag_list%} {% trans 'within' %} {% for tag in tag_list %} {{ tag }}{% if not forloop.last %}, {% endif %} {% endfor %} {% endif %} {% get_comment_count for entry as comment_count %} | {% ifequal comment_count 1 %} {% trans 'One comment' %} {% else %} {{comment_count}} {% trans 'comments' %} {% endifequal %}
{% if entry.get_image %} {{ entry.get_image.image.title }} {% endif %}
{{entry.text|safe}}

{% endfor %} {% endblock %}