{% extends "base.html.twig" %} {% block content %}

{{courses.title}}

Certification

    {% set i=0 %} {% set total = courses.chapters| length %} {% for chapter in courses.chapters %} {% set i=i+1 %}
  1. {{chapter.title}}
  2. {% endfor %} {% if quiz is defined and quiz is not null %}
  3. QCM
  4. {% endif %}
{% if currentblog is defined and currentblog is not null %}

{{ currentblog.title }}

{{ currentblog.content|raw }}
{% if currentchapter is defined and currentchapter is not null %} {% set lastBlog = currentchapter.blogs| last %} {% set lastChapter = courses.chapters| last %} {% if currentblog is defined and currentblog is not null %} {% if currentblog == lastBlog %} {% if currentchapter == lastChapter %} J'ai terminé le cours {% else %} J'ai terminé ce chapitre {% endif %} {% endif %} {% endif %} {% endif %}
{% if prevblog is defined and prevblog is not null %}
{{prevblog.title}}
{% endif %}
{% if nextblog is defined and nextblog is not null %}
{{nextblog.title}}
{% endif %}
{% endif %}

{{courses.title}}

Avancement du cours

{% if percent is defined and percent is not null %} {% set percentround = percent|round %}

{{ percentround~'%' }}

{% else %}

0%

{% endif %}
{% if percent is defined and percent is not null %} {% set percentround = percent|round %}
{% else %}
{% endif %}
{% endblock %}