{% extends 'base_admin.html.twig' %} {% block title %}EGM Stats: {{ pub.name }} {% endblock %} {% block body %}

{{ pub.name }}


EGM motion: {{ egm_question.question }}


Totals

{% set voteService = VoteService %}
Count/amount Yes No Undecided Pending Total
Count {{ voteService.getAllVoteDecisionForQuestion(egm_question, 'yes')|length }} {{ voteService.getAllVoteDecisionForQuestion(egm_question, 'no')|length }} {{ voteService.getAllVoteDecisionForQuestion(egm_question, 'undecided')|length }} {{ voteService.getAllVoteDecisionForQuestion(egm_question, 'pending')|length }} {{ egm_question.egmVotes|length }}
Amount {{ voteService.getAllVotePercentageForQuestion(egm_question, 'yes') |number_format(1, '.')}}% ({{ voteService.getAllVoteValueForQuestion(egm_question, 'yes') |number_format }}) {{ voteService.getAllVotePercentageForQuestion(egm_question, 'no') |number_format(1, '.')}}% ({{ voteService.getAllVoteValueForQuestion(egm_question, 'no') |number_format }}) {{ voteService.getAllVotePercentageForQuestion(egm_question, 'undecided') |number_format(1, '.')}}% ({{ voteService.getAllVoteValueForQuestion(egm_question, 'undecided') |number_format }}) {{ voteService.getAllVotePercentageForQuestion(egm_question, 'pending') |number_format(1, '.')}}% ({{ voteService.getAllVoteValueForQuestion(egm_question, 'pending') |number_format }}) 100% ({{ egm_question.pub.getTotalShares() |number_format }})

{% if is_granted('ROLE_ADMIN') %}

By Shareholders

Only viewable by the SAG Team

{% for vote in egm_question.egmVotes %} {% endfor %}
Shareholder Shares SAG officer Nominated Proxy Comment Attachment Vote
{{ vote.shareholder.fullName }} {{ vote.shareholder.getInvestmentAmountForPub(pub) |number_format }} {{ vote.shareholder.referal }} {% if vote.proxy is not null %} {{vote.proxy.fullname}}{% endif %} {{ vote.comment |capitalize }} {{ (vote.attachmentName is not null) ? 'Download' : '' }} {{ vote.vote |capitalize }} {{ pub.name }}: Vote & Upload All pubs: Vote & Upload
{% endif %}

Export Pending Investors to Excel

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