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

{{ lfc_context.title }}

{% endif %}
{% trans 'Posted on' %} {{ lfc_context.publication_date|date:"d.m.Y" }} {% trans 'by' %} {% if lfc_context.creator.last_name %} {{ lfc_context.creator.first_name }} {{ lfc_context.creator.last_name }} {% else %} {{ lfc_context.creator.username }} {% endif %} {% tags_for_object lfc_context 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 lfc_context as comment_count %} | {% ifequal comment_count 1 %} {% trans 'One comment' %} {% else %} {{comment_count}} {% trans 'comments' %} {% endifequal %}
{% if lfc_context.get_image %} {{ lfc_context.get_image.image.title }} {% endif %}
{{ lfc_context.text|safe }}
{% endblock %}