{% extends 'base.html.twig' %} {% block title %} {% trans %}Special records{% endtrans %} {% if type == 'R' %}RILA{% else %}REWE{% endif %} {% trans %}Edit entry{% endtrans %} {% endblock %} {% block description %} {% trans %}Edit{% endtrans %} {% endblock %} {% block recordworker_index_active %} active {% endblock %} {% block printbutton %} {% if record %} {% trans %}Print{% endtrans %} {% else %} {{ parent() }} {% endif %} {% endblock %} {% block content %} {% trans %}Back{% endtrans %}
| {% 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 %}Person No.{% endtrans %} | {% trans %}Position{% endtrans %} | {% trans %}Name{% endtrans %} | {% trans %}Start{% endtrans %} | {% trans %}End{% endtrans %} | {% if type == 'R' %} {#{% trans %}Number of cartons{% endtrans %} | #} {#{% trans %}Carton bonus{% endtrans %} | #} {% else %}{% trans %}Pause{% endtrans %} | {% trans %}Bonus{% endtrans %} | {% endif %}{% trans %}Worktime{% endtrans %} | {% trans %}Action{% endtrans %} |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ recordWorker.worker.number }} | {{ 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 %} | {% if type == 'R' %} {#{{ recordWorker.bonus | number_format }} | #} {#{{ recordWorker.bonus > 0 ? ((recordWorker.rilaCarton|number_format) ~ ' €')|raw : '-' }} | #} {% else %}{{ recordWorker.pause }} | {{ recordWorker.bonus | number_format }} | {% endif %}{{ recordWorker.worktime }} |
{% trans %}Edit{% endtrans %}
{{ form_start(deleteWorkerForms[recordWorker.id]) }}
{{ form_end(deleteWorkerForms[recordWorker.id]) }}
|