onecomptoir.html.twig 989 Bytes
<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 %}
			<h5 class="card-subtitle mb-4">{{'Groupe local'|trans}} : <a href='{{ path('show_groupe', {'slug': comptoir.groupe.slug}) }}'>{{comptoir.groupe.__toString()}}</a></h5>
		{% endif %}
		{% if comptoir.tel != null %}
			<h5 class="card-subtitle mb-1">{{ '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 %}
		{# {% if comptoir.content != null %}
			<div class="card-text">
	    		{{comptoir.content|raw}}
	    	</div>
		{% endif %} #}
    </div>
</div>