{% extends 'base.html.twig' %} {% block title %}Contribution{% endblock %} {% block body %}
| Id | {{ contribution.id }} |
|---|---|
| Montant | {{ contribution.montant }} |
| Annee | {{ contribution.annee }} |
| DateContribution | {{ contribution.dateContribution ? contribution.dateContribution|date('Y-m-d') : '' }} |
| Code | {{ contribution.code }} |
| CreatedAt | {{ contribution.createdAt ? contribution.createdAt|date('Y-m-d H:i:s') : '' }} |
| UpdatedAt | {{ contribution.updatedAt ? contribution.updatedAt|date('Y-m-d H:i:s') : '' }} |
| DeletedAt | {{ contribution.deletedAt ? contribution.deletedAt|date('Y-m-d H:i:s') : '' }} |