{% extends "djinn_contenttypes/base_detail.html" %} {% load auth_tags i18n djinn_contenttypes %} {% load pu_in_favorites_tags %} {% load contentaction_tags %} {% block title %}{{ object.title }}{% endblock %} {% block extra_actions %} {% favorite_action object %} {% retweet_content object %} {% endblock extra_actions %} {% block content %}

{{ object.text|default:""|safe }}

{% if object.documents %}

{% trans "Attachments" %}

{% for modelinstance in object.documents %} {% include "pgcontent/document_overview_item_small.html" %} {% endfor %}
{% endif %} {% if object.show_images and object.images.all.count %}
{% if object.images.all.count > 1 %}

{% trans "Click on an image to enlarge" %}

{% endif %}
{% if object.images.all.count > 1 %}
{% for item in object.images.all %} {% endfor %}
{% endif %}
{% endif %} {% endblock %}