<div class="card mb-2"> <div class="card-header" style='cursor:pointer;'> <h2> <a href='{{ path('show_comptoir', {'slug': comptoir.slug}) }}'>{{comptoir.name}}</a> </h2> </div> <div class="card-body"> {% if comptoir.groupe != null %} <h4 class="card-subtitle mb-3">{{'Groupe local'|trans}} : <a href='{{ path('show_groupe', {'slug': comptoir.groupe.slug}) }}'>{{comptoir.groupe.__toString()}}</a></h4> {% endif %} {% if comptoir.tel != null %} <h5 class="card-subtitle mb-3">{{ 'Téléphone'|trans }} : {{comptoir.tel}}</h5> {% endif %} {% if comptoir.email != null %} <h6 class="card-subtitle mb-3">{{ 'Email'|trans }} : {{ comptoir.email|safe_email|raw }}</h6> {% endif %} {% if comptoir.getFullAddresse() != null %} <h6 class="card-title text-muted mb-3">{{comptoir.getFullAddresse()}}</h6> {% endif %} <div class="card-text"> {{comptoir.content|raw}} </div> </div> </div>