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

Chef's Profile

{% for chef in chefs %} {% else %} {% endfor %}
# Profile Image Name Email Bio Certification Approved Action
{{ loop.index }} {% if chef.image %} {% else %} No Image {% endif %} {{ chef.name }} {{ chef.email }} {{ chef.bio ? chef.bio|slice(0, 40) ~ '...' : '—' }} {{ chef.certification ?: '—' }} {% if chef.approved == 1 %} Yes {% else %} No {% endif %} View
No chefs found.
{% endblock %}