ynh_extension_meeo/templates/edu_notes.twig

8 lines
228 B
Twig
Raw Normal View History

2024-07-13 19:03:41 +00:00
<div id="accordion_bulletins" class="panel-group">
2024-07-13 18:39:43 +00:00
{% for bulletin in bulletins|sort %}
{% if bulletin.isVisible() %}
{% include '@meeo/eleve_notes.twig' with { 'bulletin' : bulletin } %}
{% endif %}
2024-07-12 14:49:50 +00:00
{% endfor %}
2024-08-06 06:33:22 +00:00
</div>