{% extends 'layouts/panel_layout.html.twig' %} {% block title %} Clientes {% endblock %} {% block stylesheets %} {% endblock %} {% block content %}

CLIENTES

{#

{{ meta.activos }}

#}

Cliente del Mes

{#

{{ meta.total - meta.activos }}

#}

Total Cuentas Corrientes

{#

{{ meta.total }}

#}

Cantidad de Cuentas Corrientes

{% for message in app.flashes('error') %}

Error: {{ message }}

{% endfor %} {% for message in app.flashes('success') %}

Enhorabuena: {{ message }}

{% endfor %} {% if is_granted('ROLE_ADMIN', 'ROLE_SUPERADMIN') %}
{% for cliente in clientes %} {% endfor %}
id Razon Social DNI Direccion Acciones
{{ cliente.cuenta }} {{ cliente.apenom }} {{ cliente.dni }} {{ cliente.direccion }} {% if is_granted('ROLE_ADMIN', 'ROLE_SUPERADMIN') %} {% endif %}
{% endif %}
{% endblock %} {% block javascripts %} {{ encore_entry_script_tags('cliente') }} {% endblock %}