{% extends 'base_admin.html.twig' %} {% block title %}User index{% endblock %} {% block body %}

User index REGISTER!!!1

{% for user in users %}

{{ user.fullName }}

    {% for shares in user.shares %}
  • {{ shares.pub.name }} : {{ shares.investmentAmount | number_format() }}
  • {% endfor %}
{% endfor %}
Create new {% endblock %}