{% load cms_tags menu_tags staticfiles %} {% if objects %}

showcase list - Items count: {{ objects|length }}

{% endif %} {% for obj in objects %}

{% comment %}

detail: # Decommentare questa sezione nel caso si voglia utlizzare l'applicazione cms # per visualizzare il dettaglio dell'item. E' necessario in questo caso pluggare # l'applicazione ad una pagina cms e riavviare il ruserver Vedi dettaglio

{% endcomment %} {% if obj.tale %}

tale: {{ obj.tale }}

{% endif %}

title: {{ obj.title }}

{% if obj.content %}

content:

{{ obj.content|safe }} {% endif %} {% if obj.image %}

image url:{{ obj.image.url }}

{% endif %} {% if obj.link %}

link: {{ obj.link }}

{% endif %} {% if obj.file %}

file: {{ obj.file.url }}

{% endif %}

pub date: {{ obj.publication_date }}

slug: {{ obj.slug }}

show_image: {{ obj.show_image }}

show_link: {{ obj.show_link }}

link_type: {{ obj.link_type }}



{% empty %} no objects {% endfor %}