ynh_extension_meeo/templates/eleve_notes.twig
2024-08-06 08:34:41 +02:00

40 lines
1.5 KiB
Twig

<div id="accordion_{{ bulletin.getId() }}_matiere" class="panel-group">
{% for matiere in bulletin.getMatieres() %}
{% if matiere.isVisible() %}
<div class="panel panel-primary">
<div id="head_{{ bulletin.getId() }}_{{ matiere.getId() }}" class="panel-heading collapsed" data-parent="#accordion_{{ bulletin.getId() }}_matiere" data-target="#{{ bulletin.getId() }}_{{ matiere.getId() }}" data-toggle="collapse">
<h4 class="panel-title">{{ matiere.getNom() }}</h4>
<div class="row">
<div class="col-sm-10"></div>
<div class="col-sm-2">
Moyenne : {{ matiere.getMoyenne() }}
</div>
</div>
</div>
<div id="{{ bulletin.getId() }}_{{ matiere.getId() }}" class="panel-collapse collapse in" style="padding:5px">
{% for note in matiere.getNotes() %}
<div class="row">
<div class="col-sm-1">
{% if note.getNote() >= 20 %}
<i class="fa fa-star" style="color:gold"></i>
{% elseif note.getNote() >= 15 %}
<i class="fa fa-heart" style="color:red"></i>
{% elseif note.getNote() >= 12 %}
<i class="fa fa-smile" style="color:green"></i>
{% elseif note.getNote() >= 9 %}
<i class="fa fa-thumbs-up" style="color:green"></i>
{% endif %}
</div>
<div class="col-sm-10">
{{ note.getIntitule() }}
</div>
<div class="col-sm-1">
{{ note.getNote() }}
</div>
</div>
{% endfor %}
</div>
</div>
{% endif %}
{% endfor %}
</div>