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

All Dishes

{% for dish in dishes %} {% else %} {% endfor %}
# Image Name Description Ingredients Menu Chef Created At Actions
{{ loop.index }} {% if dish.image %} {% else %} No Image {% endif %} {{ dish.name }} {{ dish.description|length > 50 ? dish.description|slice(0, 50) ~ '...' : dish.description }} {{ dish.ingredients|length > 50 ? dish.ingredients|slice(0, 50) ~ '...' : dish.ingredients }} {{ dish.menu ? dish.menu.title : '—' }} {{ dish.chef ? dish.chef.name : '—' }} {{ dish.createdAt ? dish.createdAt|date('Y-m-d') : '—' }} Edit
No dishes found.
{% endblock %}