<div class="sidebar" style="margin-bottom: 50px!important;">
<div class="blog-sidebar">
<div class="blog-sidebar__widget">
<h3>Infos restaurant</h3>
<div class="sidebar-category" style="background: #efefef; padding: 10px;">
<ul>
<li style="padding-bottom: 20px;"><strong><i class="fa fa-map-marker"></i> Adresse</strong> <a href="#">{{ restaurant.address ?? 'Pas de d\'adresse' }}</a></li>
<li style="padding-bottom: 20px;"><strong><i class="fa fa-map-marker"></i> Lieu/Ville/Commune</strong> <a href="#">{{ restaurant.localite ?? 'Indisponible' }}</a></li>
<li style="padding-bottom: 20px;"><strong><i class="fa fa-envelope"></i> Email</strong> <a style="display: inline-block" class="pull-right" href="#">{{ restaurant.email ?? 'Pas de email' }}</a></li>
<li style="padding-bottom: 20px;"><strong><i class="fa fa-phone"></i> Contacts</strong> <a style="display: inline-block" class="pull-right" href="#">{{ restaurant.contacts ?? 'Pas de contact' }}</a></li>
<li style="padding-bottom: 20px;"><strong><i class="fa fa-globe"></i> Site web</strong>
<a style="display: inline-block" class="pull-right" href="{{ restaurant.siteweb ?? '#' }}" target="_blank">{{ restaurant.siteweb ?? 'Pas de site web' }}</a>
</li>
{% if restaurant.joursouvrables %}
<li style="padding-bottom: 20px;"><strong><i class="fa fa-calendar-check-o"></i> Jours ouvrables</strong><br>
<span class="text-muted">{{ (restaurant.joursouvrables|nl2br) }}</span>
</li>
{% endif %}
</ul>
</div>
</div>
<div class="blog-sidebar__widget">
<h3>Formulaire de reservation</h3>
<div class="sidebar-category js-form-reservation">
<div class="alert alert-info">
<strong>NB:</strong> Les champs (*) sont requis
</div>
{% include 'flash/__flash.html.twig' %}
<div id="resultat"></div>
</div>
</div>
{% if restaurant.specialites|length != 0 or restaurant.othersspecialites %}
<div class="destination-sidebar__widget">
<h3>Spécialités</h3>
<div class="destination-sidebar__widget__tags">
{% if restaurant.specialites %}
{% for specialite in restaurant.specialites %}
<a class="label label-primary" href="javascript:;">{{ specialite.name }}</a>
{% endfor %}
{% endif %}
{% if restaurant.othersspecialites %}
{% set specialites = restaurant.othersspecialites|split(';') %}
{% for specialite in specialites %}
<a class="label label-primary" href="javascript:;">{{ specialite }}</a>
{% endfor %}
{% endif %}
</div>
</div>
{% endif %}
{% if restaurant.services|length != 0 or restaurant.othersservices %}
<div class="destination-sidebar__widget">
<h3>Services</h3>
<div class="destination-sidebar__widget__tags">
{% if restaurant.services %}
{% for service in restaurant.services %}
<a class="label label-primary" href="javascript:;">{{ service.name }}</a>
{% endfor %}
{% endif %}
{% if restaurant.othersservices %}
{% set services = restaurant.othersservices|split(';') %}
{% for service in services %}
<a class="label label-primary" href="javascript:;">{{ service }}</a>
{% endfor %}
{% endif %}
</div>
</div>
{% endif %}
</div>
</div>