{% extends "base.html.twig" %} {% block content %}
{% include 'shared/menu.html.twig' %}
Mes cours
{% include 'courses/filtre.html.twig' %}
{% if courses is defined and courses is not null and courses| length >0 %} {% else %}
no cours

Vous n'avez pas de cours en cours.

Explorer cours

{% endif %}
{% if courses is defined and courses is not null and courses| length >0 %}
{% for tr in courses %}
{{tr.formation.title}}
{{tr.formation.category.name}} {% if (tr.formation.skills == "Débutant") %} Débutant {% elseif (tr.formation.skills == "Amateur") %} Amateur {% else %} Expert {% endif %}

{{tr.formation.description| u.truncate(60, '..', false) }}

Avancement du cours

{% if percents is defined and percents is not null %} {% set percentround = percents[ loop.index -1 ]|round %}

{{ percentround~'%' }}

{% else %}

0%

{% endif %}
{% if percents is defined and percents is not null %} {% set percentround = percents[ loop.index -1]|round %}
{% else %}
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}