{% extends 'admin/dashboard.html.twig' %} {% block title %}Admin - Chef Schedules{% endblock %} {% block dashboard_content %}
{% for label, messages in app.flashes %} {% for message in messages %} {% endfor %} {% endfor %}

All Chef Schedules

{% for schedule in schedules %} {% else %} {% endfor %}
# Chef Day Opening Time Closing Time Closed Exception Date Created At Action
{{ loop.index }} {{ schedule.chef ? schedule.chef.name : '—' }} {{ schedule.dayOfWeek }} {{ schedule.openingTime ? schedule.openingTime|date('H:i') : '—' }} {{ schedule.closingTime ? schedule.closingTime|date('H:i') : '—' }} {% if schedule.isClosed %} Yes {% else %} No {% endif %} {{ schedule.exceptionDate ? schedule.exceptionDate|date('Y-m-d') : '—' }} {{ schedule.createdAt ? schedule.createdAt|date('Y-m-d H:i') : '—' }}
No schedules found.
{% endblock %}