{% extends 'admin/base.html.twig' %} {% block title %}Les réalisations | Administration{% endblock %} {% block body %} {% for message in app.flashes('success') %} {% endfor %}

Les réalisations

Vous avez {{ realisations|length }} réalisation(s)
Nom
Client
Action
{% for realisation in realisations %}
{{ realisation.title }} {{ realisation.title }}
{% if realisation.client is not null %} {{ realisation.client.name }} {% endif %} {% if realisation.domaine is not null %} {{ realisation.domaine.name }} {% endif %} {% if realisation.technique is not null %} {{ realisation.technique.name }} {% endif %}
{{ include('admin/realisation/_delete_form.html.twig') }}
{% endfor %}
{% endblock %}