{% extends 'base.html.twig' %} {% block titlewrapper %}
| {% trans %}Sum{% endtrans %}: | {{ summary.workers | number_format }} {% trans %}W.{% endtrans %} | {% trans %}Worktime{% endtrans %}: | {{ summary.worktime | number_format }} | {% trans %}Bonus{% endtrans %}: | {{ summary.bonus | number_format }} | {% trans %}Sum{% endtrans %}: | {{ (summary.worktime + summary.bonus) | number_format }} | {% trans %}Score{% endtrans %}: | {{ summary.result | number_format }} |
|---|
| {% trans %}Person No.{% endtrans %} | {% trans %}Position{% endtrans %} | {% trans %}Name{% endtrans %} | {% trans %}Start{% endtrans %} | {% trans %}End{% endtrans %} | {% trans %}Travel time{% endtrans %} | {% trans %}Pause{% endtrans %} | {% trans %}Worktime{% endtrans %} | {% trans %}Bonus{% endtrans %} | {% trans %}Signature{% endtrans %} | {% if is_granted('ROLE_ADMIN') %}{% trans %}Action{% endtrans %} | {% endif %}
|---|---|---|---|---|---|---|---|---|---|---|
| {{ recordWorker.worker.number }} | {{ recordWorker.worker.position ends with 'ZZT' ? 'iGZ' : recordWorker.worker.position }} {% if recordWorker.worker.firstAid %} {% endif %} | {{ recordWorker.worker.fullName }} | {% if recordWorker.start %}{{ recordWorker.start|date('H:i') }}{% endif %} | {% if recordWorker.end %}{{ recordWorker.end|date('H:i') }}{% endif %} | {{ recordWorker.status | default('---') }} | {{ recordWorker.pause }} | {{ recordWorker.worktime | number_format }} | {{ recordWorker.bonus }} |
{% if recordWorker.isSignatureVisible %}
|
{% if is_granted('ROLE_ADMIN') %}
{# {% if not recordWorker.isSignatureVisible %} #}
{% trans %}Edit{% endtrans %}
{{ form_start(deleteWorkerForms[recordWorker.id]) }}
{{ form_end(deleteWorkerForms[recordWorker.id]) }}
{# {% endif %} #}
|
{% endif %}