feat: show job profile in teamers' recent assignments list

This commit is contained in:
Björn Fromme
2025-07-22 08:39:03 +02:00
parent 7aef767619
commit ca23b6f50b
@@ -23,6 +23,9 @@
<th>
Einsatz
</th>
<th>
Jobprofil
</th>
<th>
Gesamtnote
</th>
@@ -41,6 +44,9 @@
<br>
{{ disposition.assignment.destination.hotel }}
</td>
<td>
{{ disposition.assignment.jobProfile.name }}
</td>
<td>
{% if disposition.feedback %}
{{ disposition.feedback.averageRating|format_rating }}
@@ -51,12 +57,12 @@
<td>
{% if disposition.feedback %}
<div class="divide-y">
<div class="pb-2">
{{ disposition.feedback.comment|default('-') }}
</div>
<div class="pt-2">
{{ disposition.feedback.commentInternal|default('-') }}
</div>
<div class="pb-2">
{{ disposition.feedback.comment|default('-') }}
</div>
<div class="pt-2">
{{ disposition.feedback.commentInternal|default('-') }}
</div>
</div>
{% else %}
-
@@ -64,7 +70,7 @@
</td>
</tr>
{% else %}
<td colspan="7">
<td colspan="4">
Keine Daten...
</td>
{% endfor %}
@@ -75,4 +81,4 @@
</div>
</div>
</div>
{% endblock %}
{% endblock %}