feat: categories for job profiles
addresses #8698w62ex
This commit is contained in:
@@ -22,6 +22,15 @@ class JobProfileType extends AbstractType
|
||||
->add('name', TextType::class, [
|
||||
'label' => 'Bezeichnung',
|
||||
])
|
||||
->add('category', ChoiceType::class, [
|
||||
'label' => 'Kategorie',
|
||||
'placeholder' => 'bitte zuordnen...',
|
||||
'choices' => [
|
||||
'Reiseleitung' => JobProfile::CATEGORY_GUIDE,
|
||||
'Kursleitung' => JobProfile::CATEGORY_COURSE,
|
||||
'Serviceteam' => JobProfile::CATEGORY_SERVICE,
|
||||
],
|
||||
])
|
||||
->add('requiredTrainings', EntityType::class, [
|
||||
'label' => 'vorausgesetzte Fortbildung',
|
||||
'required' => false,
|
||||
|
||||
Reference in New Issue
Block a user