{% extends 'admin/dashboard.html.twig' %} {% block title %}Admin - All Chefs{% endblock %} {% block dashboard_content %}
| # | Profile Image | Name | Bio | Certification | Approved | Action | |
|---|---|---|---|---|---|---|---|
| {{ loop.index }} |
{% if chef.image %}
|
{{ 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. | |||||||