{% for elem in tab %}
{% for stone in elem.content %}
{% if nom is not sameas('Témoignages') or stone.lp_type is sameas('4') %}
{% if nom is sameas('Témoignages') %}
{% set link = "data-cid = " ~ stone.c_id %}
{% elseif stone.is_turbomedia %}
{% set link = "data-href = '" ~ web_path ~ "main/formation/turbo_view.php?c_id=" ~ stone.c_id ~ "&lp_id=" ~ stone.id ~ "'" %}
{% else %}
{% set link = "data-href = '" ~ web_path ~ "main/newscorm/lp_controller.php?cidReq=" ~ stone.code ~ "&id_session=0&gidReq=0&action=view&lp_id=" ~ stone.id ~ "&isStudentView=true" ~ "'" %}
{% endif %}
{{stone.title|default('Title of the module')}}
{{stone.description|default('Description du cours')}}
{% if stone.score is defined %}
{% set score = 100 - stone.score %}
{% if score == 100 %} {% set score = 95 %} {% endif %} {# trick #}
{% else %}
{% endif %}
{% set progress = 100 - stone.progress %}
{% if progress == 100 %} {% set progress = 95 %} {% endif %} {# trick #}
{% endif %}
{% endfor %}
{% endfor %}