Skip to content

Commit e1cda80

Browse files
authored
Ajout de la date de création dans l'admin des organisations (#1249)
1 parent 81b4081 commit e1cda80

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Infrastructure/Controller/Admin/OrganizationCrudController.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ public function configureFields(string $pageName): iterable
5353
->setChoices(array_combine($codeTypes, $codeTypes))
5454
->hideOnIndex(),
5555
TextField::new('codeWithType', 'Code territorial')->hideOnForm(),
56-
DateTimeField::new('updatedAt')->setLabel('Date de dernière mise à jour')->hideOnForm(),
56+
DateTimeField::new('createdAt')->setLabel('Date de création')->hideOnForm(),
57+
DateTimeField::new('updatedAt')->setLabel('Date de mise à jour du contour')->hideOnForm(),
5758
];
5859

5960
return $fields;

0 commit comments

Comments
 (0)