{% load i18n %} {% load thumbnail %} {% load leonardo_tags %} {% block content %}
{% for object in object_list %} {% if object.category == '0' %}
{% if object.photo and object.photo != '' %} {% thumbnail object.photo "308x308" crop="center" format="PNG" as image %} {{ object }} {% endthumbnail %} {% else %} {% thumbnail request.webcms_options.no_image "308x308" crop="center" format="PNG" as image %} {{ object }} {% endthumbnail %} {% endif %}

{{ object.full_name }} / {{ object.translation.position }}

{% if object.translation.summary %}
{{ object.translation.summary|safe }}
{% endif %}
{% endif %} {% endfor %}
{% for object in object_list %} {% if object.category == '1' %}
{% if object.photo and object.photo != '' %} {% thumbnail object.photo "229x229" crop="center" format="PNG" as image %} {{ object }} {% endthumbnail %} {% else %} {% thumbnail request.webcms_options.no_image "229x229" crop="center" format="PNG" as image %} {{ object }} {% endthumbnail %} {% endif %}

{{ object.full_name }} / {{ object.translation.position }}

{% if object.translation.summary %}
{{ object.translation.summary|safe }}
{% endif %}
{% endif %} {% endfor %}
{% endblock %}