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