{##
# Marks list
#}
{% set widgets = this.getMarksWidgets() %}
{% if widgets is not empty %}
<ul class="marks-list {{ this.getListClass() }}">
{% for widget in widgets %}
<li class="marks-list__item {{ this.getItemClass() }}">
{{widget.display()|raw}}
</li>
{% endfor %}
</ul>
{% endif %}