{% set title = "Nos comptes courants"|os_trans("Our current accounts") %}
{% set menu = 'accounts' %}
{% import "Macros/currentAccount.html.twig" as currentAccount %}
{% extends 'Default/base.html.twig' %}
{% block content %}
{% for o in list %}
{{currentAccount.render(o)}}
{% endfor %}
{% if isDesktop() and (list|length % 3) %}
{% for o in 1..(3 - list|length % 3) %}
{% endfor %}
{% endif %}