{% extends 'base_admin.html.twig' %} {% block title %} {{ pub.name }} Share register {% endblock %} {% block body %}

Share register - {{ pub.name }}

{% if is_granted('ROLE_ADMIN') %}
Import data from csv
{% endif %} {% set total = 0 %} {% for share in shares %} {% set total = total + share.investmentAmount %} {% endfor %}

Total : {{ total | number_format() }}

{% if is_granted('ROLE_SUPER_ADMIN') %} {% endif %} {% for share in shares %} {% if is_granted('ROLE_SUPER_ADMIN') %} {% endif %} {% endfor %}
Shareholder Holding#
{{ share.user.fullName }} {{ share.investmentAmount| number_format }}Edit
Return to list of pubs {% endblock %} {% block datatable %} {% endblock datatable %}