{% load multilingual_news_tags cms_tags thumbnail i18n %}

{% if not preview %} {% if request.user.is_superuser or request.user.is_staff %} {% render_model_icon news_entry %} {% endif %} {% endif %} {% render_model news_entry "title" %}

{% if not news_entry.is_published and not preview%}

UNPUBLISHED

{% endif %}

{% if news_entry.author %}{% trans "By" %} {{ news_entry.author }}{% endif %} {% if news_entry.pub_date %}{{ news_entry.pub_date.date }}{% else %}Mon D, YYYY{% endif %} {% if news_entry.categories.all %} {% for category in news_entry.categories.all %} {{ category.title }}{% if not forloop.last %},{% endif %} {% endfor %} {% endif %} {% if news_entry.tags.all %} {% for tagged_item in news_entry.tags.all %} {{ tagged_item.tag.name }}{% if not forloop.last %},{% endif %} {% endfor %} {% endif %}

{% if detail_view %} {% if news_entry.image %} {% endif %} {% else %} {% if news_entry.image or news_entry.thumbnail %} {% endif %} {% endif %} {% render_placeholder news_entry.content %} {% if not preview %} {% if request.user.is_superuser or request.user.is_staff %} {% trans "Open entry to edit" %} {% trans "Delete entry" %}
{% csrf_token %}
{% endif %} {% endif %}