{% extends 'base.html.twig' %} {% block title %}Cession{% endblock %} {% block body %}
| Id | {{ cession.id }} |
|---|---|
| DateCession | {{ cession.dateCession ? cession.dateCession|date('Y-m-d H:i:s') : '' }} |
| Operation | {{ cession.operation }} |
| Valeur | {{ cession.valeur }} |
| TypeCession | {{ cession.typeCession }} |
| Annotation | {{ cession.annotation }} |
| CreatedAt | {{ cession.createdAt ? cession.createdAt|date('Y-m-d H:i:s') : '' }} |
| UpdatedAt | {{ cession.updatedAt ? cession.updatedAt|date('Y-m-d H:i:s') : '' }} |
| DeletedAt | {{ cession.deletedAt ? cession.deletedAt|date('Y-m-d H:i:s') : '' }} |