{% extends 'YOUAdminBundle::layout.html.twig' %}
{% block body -%}
| Id |
Name |
Category |
Address |
Zipcode |
City |
Phone |
Google |
Isproducer |
Site(s) |
Actions |
{% for entity in entities %}
| {{ entity.id }} |
{{ entity.name }} |
{{ entity.category }} |
{{ entity.address }} |
{{ entity.zipcode }} |
{{ entity.city }} |
{{ entity.phone }} |
{{ entity.google }} |
{{ entity.isProducer }} |
{% if entity.region %}
- Région
{% endif %}
{% if entity.alsace %}
- Alsace
{% endif %}
{% if entity.limousin %}
- Limousin
{% endif %}
{% if entity.hallal %}
- Halal
{% endif %}
{% if entity.rhoneAlpes %}
- Rhone-alpes
{% endif %}
|
|
{% endfor %}
{% endblock %}