{% extends 'admin/dashboard.html.twig' %} {% block title %}Admin - All Menus{% endblock %} {% block dashboard_content %}
| # | Image | Title | Description | From | To | Cuisine | Status | Chef | Actions |
|---|---|---|---|---|---|---|---|---|---|
| {{ loop.index }} |
{% if menu.image %}
|
{{ 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. | |||||||||