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

All Menus

{% for menu in menus %} {% else %} {% endfor %}
# Image Title Description From To Cuisine Status Chef Actions
{{ loop.index }} {% if menu.image %} Menu Image {% else %} No Image {% endif %} {{ menu.title }} {{ menu.description|length > 50 ? menu.description|slice(0, 50) ~ '...' : menu.description }} {{ menu.availableFrom ? menu.availableFrom|date('Y-m-d') : 'N/A' }} {{ menu.availableTo ? menu.availableTo|date('Y-m-d') : 'N/A' }} {{ menu.cuisineType }} {% if menu.isActive %} Active {% else %} Inactive {% endif %} {{ menu.chef.name is defined ? menu.chef.name : 'Unknown' }} Edit
No menus found.
{% endblock %}