{% for matiere in bulletin.getMatieres() %} {% if matiere.isVisible() %}
{% for note in matiere.getNotes() %}
{% if note.getNote() >= 20 %} {% elseif note.getNote() >= 15 %} {% elseif note.getNote() >= 12 %} {% elseif note.getNote() >= 9 %} {% endif %}
{{ note.getIntitule() }}
{{ note.getNote() }}
{% endfor %}
{% endif %} {% endfor %}