{% extends 'base.html.twig' %}
{% block title %}
{% trans %}Market{% endtrans %}
3.1b {% trans %}Working plan{% endtrans %}
{% endblock %}
{% block content %}
{% trans %}Back{% endtrans %}
| {% trans %}Market{% endtrans %}: {{ market.number }} |
<<
{% trans %}Week{% endtrans %}: {{ weekNumber }}
>>
|
{% for i in 1..6 %}
| {{ weekDays[i] | format_date(null, 'EEEE') }} |
{% endfor %}
{% for i in 1..6 %}
|
{% if market.hours.get(i) %}
{{ market.hours.get(i).open|date('H:i') }} - {{ market.hours.get(i).close|date('H:i') }}
{% endif %}
|
{% endfor %}
{% for i in 1..6 %}
|
|
{% endfor %}
{% for i in 1..6 %}
{% apply spaceless %}
{% for wpw in workingPlanWorkers %}
{% if wpw.days[i] is defined %}
{% set worker = wpw.planWorker.worker %}
-
{{ worker.number }}: {{ worker.firstName }} {{ worker.lastName }}
{% if worker.position|length > 0 %}({{ worker.position }}){% endif %}
X
{% endif %}
{% endfor %}
{% endapply %}
|
{% endfor %}
{% endblock %}
{% block javascripts %}
{% endblock %}