{% set works = ent.getWorks() %} {% set iii = 0 %} {#
#}
 
{% for work in works %} {##} {#{{ loop.index0 is odd?'':'' }}#}
{{ work.getName() }}
{#{{ work.getOneArtist().getFirstName() }} {{ work.getOneArtist().getLastName() }}#} {% if work.year !=0 %} {{ work.year }}
{% endif %} {{ work.materials }}
{% if work.height is not empty %} H {{ work.height }} {% endif %} {% if work.depth is not empty %} L {{ work.depth }} {% endif %} {% if work.width is not empty %} W {{ work.width }} {% endif %} (CM) / {% if work.height is not empty %} H {{ (work.height*0.0328) |number_format(1, '.', ' ') }} {% endif %} {% if work.depth is not empty %} L {{ (work.depth*0.0328) | number_format(1, '.', ' ') }} {% endif %} {% if work.width is not empty %} W {{ (work.width*0.0328) | number_format(1, '.', ' ') }} {% endif %} (FEETS)
{{ work.price |number_format(2, ' ', ',') }} €
{#{{ loop.index0 is odd?'':'' }}#} {#
#} {% set iii = iii + 1 %} {% if iii == 10 %}
 
{% endif %} {% endfor %} {#
#}