{% extends 'base.html.twig' %} {% block title %}Chef Dashboard{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %} {% block content %}
{# Flash messages #} {% for label, messages in app.flashes %} {% for message in messages %}
{{ message }}
{% endfor %} {% endfor %} {% if needsProfileUpdate is defined and needsProfileUpdate %}
⚠️ Please update your profile. Admin approval is required before your profile is visible to users.
{% elseif notApproved is defined and notApproved %}
Your profile is awaiting admin approval. Once approved, users will see your profile.
{% endif %} {% block dashboard_content %} {% if app.request.attributes.get('_route') == 'chef_dashboard' %}

Welcome, Chef {{ app.user.name }}

Menus

{{ menuCount }}

Dishes

{{ dishCount }}

Schedules

{{ scheduleCount }}

Orders

{{ pendingOrdersCount }}

{% endif %} {% endblock %}
{% endblock %}