feat: move cost unit from assignment to job profile

This commit is contained in:
Björn Fromme
2025-03-18 12:30:24 +01:00
parent 3d85949ade
commit 924026e9f8
9 changed files with 69 additions and 32 deletions
@@ -4,6 +4,7 @@
{{ form_row(form.feedbackSet) }}
{{ form_row(form.requiredTrainings) }}
{{ form_row(form.requiredLicenses) }}
{{ form_row(form.costUnit) }}
</div>
<div class="flex items-center space-x-2">
<button type="submit" class="btn">
@@ -27,7 +27,9 @@
{% for jobProfile in jobProfiles %}
<tr>
<td>
{{ jobProfile.name }}
<a href="{{ path('app_admin_system_job_profile_edit', { 'id': jobProfile.id }) }}">
{{ jobProfile.name }}
</a>
</td>
<td>
<ul>
@@ -81,4 +83,4 @@
<a href="{{ path('app_admin_system_job_profile_create') }}" class="btn">
Neu
</a>
{% endblock %}
{% endblock %}
@@ -34,7 +34,6 @@
<div class="grid grid-cols-1 gap-y-4">
{{ form_row(form.contact) }}
{{ form_row(form.remarks) }}
{{ form_row(form.costCenter) }}
</div>
</div>
</div>