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

Washerman's Profile

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