feat: categories for job profiles
addresses #8698w62ex
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
{{ form_start(form) }}
|
||||
<div class="flex flex-col space-y-4 pb-8">
|
||||
{{ form_row(form.name) }}
|
||||
{{ form_row(form.category) }}
|
||||
{{ form_row(form.feedbackSet) }}
|
||||
{{ form_row(form.requiredTrainings) }}
|
||||
{{ form_row(form.requiredLicenses) }}
|
||||
|
||||
@@ -14,6 +14,9 @@
|
||||
<th>
|
||||
Bezeichnung
|
||||
</th>
|
||||
<th>
|
||||
Kategorie
|
||||
</th>
|
||||
<th>
|
||||
vorausg. Fortbildung(en)
|
||||
</th>
|
||||
@@ -31,6 +34,11 @@
|
||||
{{ jobProfile.name }}
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="{{ path('app_admin_system_job_profile_edit', { 'id': jobProfile.id }) }}">
|
||||
{{ jobProfile.categoryLabel | default('-') }}
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<ul>
|
||||
{% for training in jobProfile.requiredTrainings %}
|
||||
|
||||
Reference in New Issue
Block a user