{% extends 'admin.html.twig' %} {% block title %}Investissement{% endblock %} {% block body %}

Liste des investissements: {{ project.title }}


{% for investment in investments %} {% else %} {% endfor %}
Investisseur créateur Montant Promis Montant Collecté date de création actions
{{ investment.user }} {{ investment.creator.fullname }} {{ investment.amount | format_currency(investment.currency) }} {{ investment.realAmountCollected | format_currency(investment.currency) }} {{ investment.createdAt ? investment.createdAt|date('Y-m-d H:i:s') : '' }} Voir
no records found
{% endblock %}