{% set html_id = _args.html_id|default('collapse-' ~ token()) %}
{% set collapsed = _args.collapsed ?? true %}
{% set disabled = _args.disabled ?? false %}
{% if not disabled %}
<div class="blocklist__cell blocklist_arrow">
<div class="flex__wrap--center">
<a class="blocklist__chevron {% if collapsed %} collapsed{% endif %}" data-toggle="collapse" href="#{{ html_id }}">
<i class="icon-glyph-chevron-right"></i>
</a>
</div>
</div>
<a class="blocklist__anchor" data-toggle="collapse" href="#{{ html_id }}"></a>
<div id="{{ html_id }}" class="w-100 blocklist__panel collapse{% if not collapsed %} show{% endif %}">
<div class="blockgroup-wrapper mt-0">
{% block content %}{% endblock %}
</div>
</div>
{% endif %}