templates/content/structure/titrePage.html.twig line 1

Open in your IDE?
  1.   <div id="infoCards" class="col-12">
  2.     <div class="cardNbr mObile">
  3.       {% if immemory|length == 0  %}
  4.         Pas de Card
  5.       {% elseif immemory|length == 1  %}
  6.         1 Card
  7.       {% else %}
  8.         {{ immemory|length }} Cards
  9.       {% endif %}
  10.       
  11.       {% if app.user is not null %}
  12.         {% for role in app.user.roles  %}
  13.           {% if role == "ROLE_ADMIN" %}
  14.              <a class="btnImmemory mObile" href="{{ path('admin_stacks_new') }}">ajouter une card</a>
  15.           {% endif %}
  16.         {% endfor %}
  17.       {% endif %}
  18.     </div>
  19.   </div>