{% extends 'chef/dashboard.html.twig' %} {% block title %}Chef Schedule{% endblock %} {% block dashboard_content %}

Chef Schedule

{{ form_start(form) }}
{{ form_row(form.dayOfWeek) }}
{{ form_row(form.openingTime) }}
{{ form_row(form.closingTime) }}
{{ form_row(form.isClosed) }}
{{ form_row(form.exceptionDate) }}
{{ form_end(form) }}

Existing Schedules

{% for schedule in schedules %} {% else %} {% endfor %}
# Day Opening Closing Closed Exception Date Action
{{ loop.index }} {{ schedule.dayOfWeek }} {{ schedule.openingTime|date('H:i') }} {{ schedule.closingTime|date('H:i') }} {{ schedule.isClosed ? 'Yes' : 'No' }} {{ schedule.exceptionDate ? schedule.exceptionDate|date('Y-m-d') : '—' }}
No schedule found.
{# Modals outside the table so striping stays intact #} {% for schedule in schedules %} {% endfor %}
{% endblock %}