{% load static %} {% load i18n %} {% load thumbnail %}
  • {% ifequal item.content_type.model "fragment" %} {% with fragment=item.content_object %}
    {% with image=fragment.image.info.image_file %} {% include "partial/fragment_only.html" %} {% endwith %}

    {{ fragment.title }}

    {{ fragment.author }}

    • {% if user.is_authenticated %} {% else %} {% endif %}
    {% if col.author == user %}{% endif %}

    {{ fragment.title }}

    {{ fragment.author }}

    desc : {{ item.description }}
    contenttype : {{ item.content_type.model }}
    object_id : {{ item.object_id }}
    content_object : {{ item.content_object }}

    {% endwith %} {% else %} {% with img=item.content_object %} {% with img.info.image_file as image %} {% if image %} {% thumbnail image "177" format="PNG" crop="center" as im %} {% empty %} {% endthumbnail %} {% else %} {% endif %}

    {{ img.metadata.titre }}

    {{ img.metadata.auteur }}

    • {% if user.is_authenticated %} {% else %} {% endif %}
    {% if col.author == user %}{% endif %}

    {{ img.metadata.titre }}

    {{ img.metadata.auteur }}

    desc : {{ item.description }}
    contenttype : {{ item.content_type.model }}
    object_id : {{ item.object_id }}
    content_object : {{ item.content_object }}

    {% endwith %} {% endwith %} {% endifequal %}