{% set title = "Nos prĂȘts"|os_trans("Our loans") %}
{% set topmenu = 'accounts' %}
{% import "Macros/credit.html.twig" as credit %}
{% extends 'Default/base.html.twig' %}
{% block content %}
{% for o in list %}
{{credit.render(o)}}
{% endfor %}
{% if isDesktop() and (list|length % 3) %}
{% for o in 1..(3 - list|length % 3) %}
{% endfor %}
{% endif %}