{% extends 'base_admin.html.twig' %} {% block title %} Secondary Market - {{ pub }}{% endblock %} {% block body %}

Secondary Market: {{ pub }}

{% for user in users %} {% if user.secondaryMarketForPub(pub).buy != 0 or user.secondaryMarketForPub(pub).sell != 0 %} {% endif %} {% endfor %}
Shareholder Email Phone Investment Buyer Seller
{{ user.fullName }} {{ user.email }} {{ user.mobile }} {{ user.getInvestmentAmountForPub(pub)|number_format()}} {% if user.secondaryMarketForPub(pub).buy is not null %} {{ user.secondaryMarketForPub(pub).buy ? 'Yes': "No" }} {% endif %} {% if user.secondaryMarketForPub(pub).sell is not null %} {{ user.secondaryMarketForPub(pub).sell ? 'Yes': "No" }} {% endif %}

{% endblock %} {% block datatable %} {% endblock datatable %}