{% extends 'base.html.twig' %} {% block title %}Washerman Dashboard{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %} {% block content %}
{% 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') == 'washerman_dashboard' %}

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

Products

{{ productCount }}

Schedules

{{ scheduleCount }}

Orders

{{ orderCount }}

Support

{{ supportCount }}

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