create new person: add an action and put action buttons in a dropdown

This commit is contained in:
2021-08-27 09:30:15 +02:00
parent 34df295801
commit 52a0c0e95b
3 changed files with 26 additions and 7 deletions

View File

@@ -244,7 +244,9 @@ final class PersonController extends AbstractController
'label' => 'Add the person'
])->add('createPeriod', SubmitType::class, [
'label' => 'Add the person and create an accompanying period'
]);
])->add('createHousehold', SubmitType::class, [
'label' => 'Add the person and create an household'
]); // TODO createHousehold form action
$form->handleRequest($request);