WIP: Adjust model, remove manager branch in navigation

This commit is contained in:
Björn Fromme
2023-10-07 17:34:40 +02:00
parent 25a90b04aa
commit 8740041e7a
30 changed files with 302 additions and 152 deletions
@@ -1,8 +1,8 @@
{{ form_start(form) }}
<div class="flex flex-col space-y-4 pb-8">
{{ form_row(form.name) }}
{{ form_row(form.requiredTraining) }}
{{ form_widget(form.requiredLicenses) }}
{{ form_row(form.requiredTrainings) }}
{{ form_row(form.requiredLicenses) }}
</div>
<div class="flex items-center space-x-2">
<button type="submit" class="btn">
@@ -15,10 +15,10 @@
Bezeichnung
</th>
<th>
Fortbildung
vorausg. Fortbildung(en)
</th>
<th>
Lizenzen
vorausg. Lizenz(en)
</th>
<th></th>
</tr>
@@ -30,7 +30,17 @@
{{ jobProfile.name }}
</td>
<td>
{{ jobProfile.requiredTraining.name|default('-') }}
<ul>
{% for training in jobProfile.requiredTrainings %}
<li>
{{ training.name }}
</li>
{% else %}
<li>
-
</li>
{% endfor %}
</ul>
</td>
<td>
<div class="flex items-center space-x-2">