<div id="infoCards" class="col-12">
<div class="cardNbr mObile">
{% if immemory|length == 0 %}
Pas de Card
{% elseif immemory|length == 1 %}
1 Card
{% else %}
{{ immemory|length }} Cards
{% endif %}
{% if app.user is not null %}
{% for role in app.user.roles %}
{% if role == "ROLE_ADMIN" %}
<a class="btnImmemory mObile" href="{{ path('admin_stacks_new') }}">ajouter une card</a>
{% endif %}
{% endfor %}
{% endif %}
</div>
</div>